bitbelay_tests/lib.rs
1//! Individual tests within `bitbelay`.
2
3pub mod avalanche;
4pub mod chi_squared;
5pub mod correlation;
6pub mod performance;
7
8/// Traits for `bitbelay` tests.
9pub mod r#trait {
10 use bitbelay_report::section;
11
12 /// A test.
13 pub trait Test {
14 /// Gets the name of the test.
15 fn title(&self) -> &'static str;
16
17 /// Gets the report from the test suite.
18 fn report_section(&self) -> section::Test;
19 }
20}