mock_derive icon indicating copy to clipboard operation
mock_derive copied to clipboard

A mocking library for Rust-lang

Results 1 mock_derive issues
Sort by recently updated
recently updated
newest added

mock_derive cannot mock traits that are `Send`. Example: ```rust fn send() { #[mock] pub trait A { fn foo(&self); } let mock = MockA::new(); let _ = Box::new(mock) as Box;...