Currently we use Moq to verify that a method has been called with the correct parameters, however this requires the method to actually be mocked resulting in loads of bloat in the class. I would rather use the actual implementation.
Can I use Moq to default to the implementation if it hasn't been SetUp
? Or is there an alternative way to verify the method has been called?