From 7f9294869afd07e096e73a45e6a101b8970a0e6e Mon Sep 17 00:00:00 2001 From: HampusM Date: Sun, 26 Mar 2023 16:30:19 +0200 Subject: feat: add automock attribute --- examples/automock.rs | 31 +++++++++++++++++++++++++++++++ 1 file changed, 31 insertions(+) create mode 100644 examples/automock.rs (limited to 'examples') diff --git a/examples/automock.rs b/examples/automock.rs new file mode 100644 index 0000000..c8725ce --- /dev/null +++ b/examples/automock.rs @@ -0,0 +1,31 @@ +use cool_trais::Foo; +use ridicule::predicate::{always, eq}; + +use crate::cool_trais::MockFoo; + +mod cool_trais +{ + use ridicule::automock; + + #[automock] + pub trait Foo + { + fn bar(&self, num: u128, text: &str) -> Something; + } +} + +fn main() +{ + let mut mock_foo = MockFoo::new(); + + mock_foo + .expect_bar() + .with(eq(1234), always()) + .returning(|_, num, text| { + println!("bar was called with {num} and '{text}'"); + + 9.36f32 + }); + + mock_foo.bar::(1234, "Hello"); +} -- cgit v1.2.3-18-g5258