Search Results

3
votes

How do you make a unit test when the results vary?

It sounds like your testing at too high a level. Consider mocking the web service interface and writing other unit tests on the data layer that access the database. Some more detail here might make …
1
vote

Comment the interface, implementation or both?

We just comment the interface, comments are so easy to get out of sync with either the derived or base class/interface that's it's nice to have it in just one place. Although it looks like …