I have added a VS2010 test project to a new and empty solution.
When I start the unit-tests (in debug or release mode) I get an error:
"""
Fehler 03.09.2012 13:32:14 Fehler beim Hinzufügen des Testlaufs "xxxxx
2012-09-03 13:32:14" zur Warteschlange: Der Index lag außerhalb des Bereichs. Er muss nicht negativ und kleiner als die Auflistung sein.
Parametername: index MYCOMPUTER
"""
(Error during adding the test-run to the queue. The index was out of range. It must be non-negativ and smaller then the list.)
How can i fix that ?
I added just another simple test-class and it is really simple:
[
TestClass]public
class
TestTestTest
{[TestMethod]
public
void SimpleIO(){
Assert.AreEqual(2048, 2048);}}