1//! Test doubles 2//! 3//! Enable unit testing with controlled inputs and predictable behavior. 4 5mod consumer; 6mod publisher; 7mod timestamp; 8 9pub use consumer::*; 10pub use publisher::*; 11pub use timestamp::*;