mockall 0.9.1

A powerful mock object library for Rust.
Documentation
// vim: tw=80
//! A struct that implements a trait that inherits another trait
#![deny(warnings)]

use mockall::*;

trait A {
    fn foo(&self);
}

trait B: A {
    fn bar(&self);
}

mock!{
    B {}
    impl A for B {
        fn foo(&self);
    }
    impl B for B {
        fn bar(&self);
    }
}

#[test]
fn returning() {
    let mut mock = MockB::new();
    mock.expect_foo().returning(|| ());
    mock.expect_bar().returning(|| ());
    mock.foo();
    mock.bar();
}