mockiato 0.9.5

A strict, yet friendly mocking library for Rust 2018
Documentation
use mockiato::mockable;

#[mockable(static_references)]
trait Greeter: 'static {
    fn greet(&self, name: &str) -> String;
}

#[test]
fn test() {}