| 298 | } |
| 299 | |
| 300 | String fuzzJSONKey(const StorageFuzzJSON::Configuration & config, pcg64 & rnd, const String & key) |
| 301 | { |
| 302 | return fuzzString(config.min_key_length, config.max_key_length, rnd, key, generateRandomKeyCharacter); |
| 303 | } |
| 304 | |
| 305 | // Randomly modify structural characters (e.g. '{', '}', '[', ']', ':', '"') to generate output that cannot be parsed as JSON. |
| 306 | String fuzzJSONStructure(const StorageFuzzJSON::Configuration & config, pcg64 & rnd, const String & s) |
no test coverage detected