In order to automate unit tests on TeamCity I had to create a test list in my vsmdi
configuration file indicating that every test is part of a list I called CompleteCoverage
. I dislike this a lot because in order to auto-run new tests I'll have to remember to include them on this list.
Is there some way to run every test in the solution using TeamCity and MSBuild (other than explicitly referencing the path to the output test assembly)?
Should I just drop MSTest and go for NUnit?