Skip to main content

Posts

Showing posts from April, 2015

Choosing between stub and shim types while Unit Testing using Microsoft Fake

Microsoft Fakes help you isolate the code you are testing by replacing other parts of the application with  stubs  or  shims . These are small pieces of code that are under the control of your tests. By isolating your code for testing, you know that if the test fails, the cause is there and not somewhere else. Stubs and shims also let you test your code even if other parts of your application are not working yet.