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