mockall 0.9.1

A powerful mock object library for Rust.
Documentation
// vim: tw=80
//! a method that returns impl Trait
#![deny(warnings)]

use mockall::*;
use std::fmt::Debug;

mock!{
    Foo {
        fn foo(&self) -> impl Debug + Send;
    }
}

#[test]
fn returning() {
    let mut mock = MockFoo::new();
    mock.expect_foo().returning(|| Box::new(4));
    format!("{:?}", mock.foo());
}