proptest/test_runner/
mod.rs

1//-
2// Copyright 2017, 2018 The proptest developers
3//
4// Licensed under the Apache License, Version 2.0 <LICENSE-APACHE or
5// http://www.apache.org/licenses/LICENSE-2.0> or the MIT license
6// <LICENSE-MIT or http://opensource.org/licenses/MIT>, at your
7// option. This file may not be copied, modified, or distributed
8// except according to those terms.
9
10//! State and functions for running proptest tests.
11//!
12//! You do not normally need to access things in this module directly except
13//! when implementing new low-level strategies.
14
15mod config;
16mod errors;
17mod failure_persistence;
18mod reason;
19#[cfg(feature = "fork")]
20mod replay;
21mod result_cache;
22mod rng;
23mod runner;
24mod scoped_panic_hook;
25
26pub use self::config::*;
27pub use self::errors::*;
28pub use self::failure_persistence::*;
29pub use self::reason::*;
30pub use self::result_cache::*;
31pub use self::rng::*;
32pub use self::runner::*;