Using NSubstitute.
For some tests I want to assert that a Substitute has received no calls whatsoever. I could use DidNotReceiveWithAnyArgs()
for every method in the interface, but that is tedious and not as robust (if a new method is added to the interface, a developer could easily overlook adding that to the test).
I'm looking for something functionally similar to Moq's VerifyNoOtherCalls()
being called without any other Verify checks.