#[fuzztest]Expand description
Define a fuzz test.
All input parameters of the given function must implement arbitrary::Arbitrary.
This macro derives new items based on the given function.
- A
fuzz_target!is generated that can be used withcargo fuzz. - Property tests (
quickcheckorproptest, based on which features are enabled) are generated that can be tested usingcargo test.
See the crate documentation derive_fuzztest for details.