Search Results

0
votes

Unit testing the app.config file with NUnit

The simplest option is to wrap the methods that read configuration such that you can substitute in values during testing. Create an interface that you use for reading config and have an implementat …
3
votes

Rhino Mocks, TypeMock, Moq, or NMock? Which one do you use and why?

I'm a big fan of Typemock Isolator and use it both for my personal/open source projects and for work. The big benefit I get is the ability to test all of the bits that interface with sealed/static/ …