Ian Blackburn

Mocks

There are 1 entries for the tag Mocks

Dymanic Mocking with TypeMock

Technorati Tags: TDD,Mocks If you haven't tried TypeMock yet, then you are missing out on an amazing mocking framework. Unlike other frameworks we have tried, TypeMock does not require you to change the code you are testing in order to create a "mocked" version of the dependency object you want to mock. For example if testing a Business Object and you want to mock some Data Access object, then using a framework like NMock would require you to pass a mocked version of you Data Access object to the Business Object.  This would require some refactoring (extracting...