mockall 0.9.1

A powerful mock object library for Rust.
Documentation
// vim: tw=80
//! generic traits with bounds on the generic parameters
#![deny(warnings)]

use mockall::*;

#[automock]
trait A<T: Copy + 'static> {
    fn foo(&self);
}

#[test]
fn returning() {
    let mut mock = MockA::<u32>::new();
    mock.expect_foo()
        .returning(|| ());
    mock.foo();
}