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