mockall 0.9.1

A powerful mock object library for Rust.
Documentation
// vim: tw=80
//! A generic struct with a generic trait, using the <= 0.8.0 syntax
#![deny(warnings)]
#![allow(deprecated)]

use mockall::*;

trait Foo<T: 'static> {
    fn foo(&self, x: T) -> T;
}
mock! {
    Bar<T: 'static, Z: 'static> {}
    trait Foo<T: 'static> {
        fn foo(&self, x: T) -> T;
    }
}

#[test]
fn returning() {
    let mut mock = MockBar::<u32, u64>::new();
    mock.expect_foo()
        .returning(|x| x);
    assert_eq!(5u32, mock.foo(5u32));
}