harness/
lib.rs

1//! Shared helpers for Antithesis test commands.
2
3use std::time::Duration;
4
5pub mod config;
6pub mod contexts;
7pub mod dogstatsd;
8#[cfg(unix)]
9pub mod driver;
10pub mod payload;
11pub mod rand;
12
13/// How long a context may take to appear on both lanes before it counts as a
14/// divergence.
15pub const ACCEPTABLE_FLUSH_DELAY: Duration = Duration::from_secs(30);