hegeltest 0.12.7

Property-based testing for Rust, built on Hypothesis
Documentation
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
// In-process Hegel test engine.
//
// When the `native` feature is enabled, this module provides an alternative
// test runner that doesn't require a Python server: a Rust port of
// Hypothesis's conjecture engine (random generation, choice-based shrinking,
// span-mutation, novel-prefix generation) that runs in the same process as
// the user's test.

pub mod bignum;
pub mod core;
pub mod data_source;
pub mod data_tree;
pub mod database;
pub mod floats;
pub mod schema;
pub mod shrinker;
pub mod test_runner;