1 2 3 4 5 6 7 8 9
pub mod coverage; pub mod framework; pub mod mock; pub mod runner; // Re-export commonly used items pub use framework::{TestCase, TestConfig, TestResult, TestStatus, TestSuite}; pub use mock::{MockBuilder, MockFunction, MockRegistry}; pub use runner::TestRunner;