show/hide this revision's text 2 took out distracting bs

Unless you do some very heavy lifting, the only way you can "mock" a class (in the .NET world) is to override methods. That means only virtual and abstract methods/properties can be mocked.

Of course, interfaces can be fully mocked.

Only very powerful (and somewhat expensive) mocking frameworks such as TypeMock can mock 100% of the methods and properties of an object.

As far as your other question, its

Its good design, imho. What happens when somebody comes after you and changes your method, removing the call to Reset? (btw, why so much state in your objects?) You might never know they screwed up until you hit production. By mocking it and asserting on that method call, you can assure nobody is going to mess up while maintaining your code.

show/hide this revision's text 1

Unless you do some very heavy lifting, the only way you can "mock" a class (in the .NET world) is to override methods. That means only virtual and abstract methods/properties can be mocked.

Of course, interfaces can be fully mocked.

Only very powerful (and somewhat expensive) mocking frameworks such as TypeMock can mock 100% of the methods and properties of an object.

As far as your other question, its good design. What happens when somebody comes after you and changes your method, removing the call to Reset? (btw, why so much state in your objects?) You might never know they screwed up until you hit production. By mocking it and asserting on that method call, you can assure nobody is going to mess up while maintaining your code.