1 2 3 4 5 6 7 8 9 10
//! Mock implementations for testing. //! //! This module provides test doubles for infrastructure adapters, //! enabling controlled testing of application logic. pub mod clock; pub mod layer; pub use clock::MockClock; pub use layer::MockCaptureLayer;