In .net, unlike in Java, methods are not virtual by default. In order to use most mock object frameworks, you either have to mark the methods that you want to use on your mock as virtual on the `real' object, or you have to have an interface that you can mock that the class under test will accept in lieu of the implementation.
It seems like bad form to go and mark every method as virtual, but it also seems like bad form to define an interface for every single class.
What is the best thing to do?