The [unreleased upstream PR](https://github.com/NagRock/ts-mockito/pull/216) (which this fork inherited) that attempted to copy https://github.com/johanblumenberg/ts-mockito/pull/4 was unfortunately not complete. The actual calls are logged from: | Verificator function | [@johanblumenberg/ts-mockito](https://github.com/johanblumenberg/ts-mockito/blob/b9dc1290c444bd8e2396b394cf0f3d164a3992ff/src/MethodStubVerificator.ts#L37-L62) | [@typestrong/ts-mockito](https://github.com/TypeStrong/ts-mockito/blob/b39a6a04b0ae9c3725431889ecc8930105655f88/src/MethodStubVerificator.ts#L37) |-|:-:|:-: | `called` | ✅ | ❌ | `never` | ✅ | ✅ | `once` | ✅ | ✅ | `twice` | ✅ | ✅ | `thrice` | ✅ | ✅ | `times` | ✅ | ✅ | `atLeast` | ✅ | ❌ | `atMost` | ✅ | ❌ `called` ~~is what we use the most, so it~~ is unfortunate to have been missed. Edit: Sorry, I'd wrongly assumed we use `called` more than `once`; but it is actually by far the other way around