Tagged Questions
The vsunit tag has no wiki summary.
3
votes
4answers
105 views
Organizing unit test within a test class
Suppose I have several unit tests in a test class ([TestClass] in VSUnit in my case). I'm trying to test just one thing in each test (doesn't mean just one Assert though). Imagine there's one test ...
1
vote
3answers
216 views
Testing against Web Configuration from Class Library
I'm storing my application settings in my web.config file and accessing them using ConfigurationManager.GetSection or ConfigurationManager.AppSettings. I've created a test to ensure that the settings ...