diff options
author | HampusM <hampus@hampusmat.com> | 2023-03-19 16:29:23 +0100 |
---|---|---|
committer | HampusM <hampus@hampusmat.com> | 2023-03-19 16:54:57 +0100 |
commit | ad2a6d1dc517407939ed022bba9f3352efc678ce (patch) | |
tree | 8bf7acc6cd79f2d686865832a3b44adb22c01d60 /src | |
parent | 657673f4a25a2a7299d3751d54d9597635bc529d (diff) |
feat: add call count expectations to expectations
Diffstat (limited to 'src')
-rw-r--r-- | src/lib.rs | 7 |
1 files changed, 7 insertions, 0 deletions
@@ -26,4 +26,11 @@ pub mod __private } } } + + pub enum CallCountExpectation + { + Never, + Unlimited, + Times(u32), + } } |