checkito

A simple quickcheck inspired library to generate growable/shrinkable random data mainly oriented towards generative/property/exploratory testing.

One would use this library to prove that certain properties hold for a program for a tentatively representative sample of their input space.

Example

```rust use checkito::{check::Error, regex::Regex, *};

struct Composite(String, f64);

// Parse this pattern as a Regex which implements the Generate trait. let regex = "[a-zA-Z0-9_]*".parse::().unwrap(); // f64 ranges implement the Generate trait. let number = 10.0f64..; // Combine the previous Generate implementations and map them to a custom struct. let composite = (regex, number).map(|pair| Composite(pair.0, pair.1));

// Generate 1000 Composite values which are checked to be alphanumeric. // Generate::check will fail when a '' will appear in value.0 and the shrinking process will begin. let result: Result<_, _> = composite.check(1000, |value: &Composite| { value.0.chars().all(|character| character.isalphanumeric()) }); // result will be Err and will hold the original and shrunk values. let error: Error = result.unwrap_err(); let _original: &Composite = error.original(); // The expected shrunk value is Composite("_", 10.0). let _shrunk: &Composite = error.shrunk();

// Alternatively, generated samples can be retrieved directly, bypassing shrinking. for value in composite.samples(1000) { assert!(value.0.chars().all(|character| character.is_alphanumeric())); } ```

See the examples and tests folder for more detailed examples.

Alternatives