This commit is contained in:
Antonis Geralis 2022-08-29 22:07:31 +03:00
parent b08d0b5d47
commit 19bdadca88
1 changed files with 1 additions and 1 deletions

View File

@ -18,7 +18,7 @@ For most cases, it is fairly trivial to define a data type and a target function
performs some operations and checks if the invariants expressed as assert conditions still
hold. See [What makes a good fuzz target](https://github.com/google/fuzzing/blob/master/docs/good-fuzz-target.md)
for more information. Then call `defaultMutator` with that function as parameter. That can be as basic as
defining a range type and ensuring the software under test doesn't crash or complex as shown bellow.
defining a fixed-size type and ensuring the software under test doesn't crash or complex as shown bellow.
### Example