Is there a way to delegate a mock implementation to an actual class without having to setup every method?
Let’s say I have an interface I want to mock, and a concrete class that implements that interface, and I want to be able to verify that the mock is called (easy), but delegate the implementation without having to do setup on every parameter of every method call — is there an easier way to do this?