mockall 0.9.1

A powerful mock object library for Rust.
Documentation
// vim: tw=80
//! generic methods with generic arguments
#![deny(warnings)]

use mockall::*;

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

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