summaryrefslogtreecommitdiff
path: root/src
diff options
context:
space:
mode:
authorHampusM <hampus@hampusmat.com>2023-03-19 16:29:23 +0100
committerHampusM <hampus@hampusmat.com>2023-03-19 16:54:57 +0100
commitad2a6d1dc517407939ed022bba9f3352efc678ce (patch)
tree8bf7acc6cd79f2d686865832a3b44adb22c01d60 /src
parent657673f4a25a2a7299d3751d54d9597635bc529d (diff)
feat: add call count expectations to expectations
Diffstat (limited to 'src')
-rw-r--r--src/lib.rs7
1 files changed, 7 insertions, 0 deletions
diff --git a/src/lib.rs b/src/lib.rs
index 3011354..3a1d983 100644
--- a/src/lib.rs
+++ b/src/lib.rs
@@ -26,4 +26,11 @@ pub mod __private
}
}
}
+
+ pub enum CallCountExpectation
+ {
+ Never,
+ Unlimited,
+ Times(u32),
+ }
}