2
votes
How do you unit test private methods?
On CodeProject, there is an article that briefly discusses pros and cons of testing private methods. It then provides some reflection code to access private methods (similar to the code Marcus pro …
4
votes
UI Testing Framework + Continuous Integration ??
NUnitForms has a "hidden desktop" feature that will let you run unit tests from cc.net.
…
0
votes
NUnit reference binaries in other directory
On the machine in question, create an environment variable "DEVPATH" and set the value to the path for your assemblies. Then, within nunit.exe.config, add the following within the \configuration\r …
0
votes
Help running NUnit from dos command line.
I'm not sure how Resharper handles tests, but I do recall TestDriven.Net as being able to 'run test' on methods that were not actually marked as unit tests. Make sure your class is public and mark …
1
vote
How to avoid duplicating test code
Whether you split the tests into two projects or keep them in one might depend on the number of classes/tests you have. Too many classes in a single project would make it difficult to dig through. …
1
vote
Is using NUnit’s Sequential attribute a valid strategy to achieve one check per test?
It seems to me that your original two unit tests are easy enough to understand and could be left alone. In a given unit test you want to check one "unit" of functionality, which is not necessarily …
0
votes
1
vote
Test Projects Won’t Load in VS08
As SLaks already asked, can you create new Test projects on the computer having issues? If you are able to create new ones without issue, try running a diff between the good project file and a bad …
