MSTest Not Finding New Tests

Posted by Blake Blackwell on Stack Overflow See other posts from Stack Overflow or by Blake Blackwell
Published on 2010-04-16T16:00:18Z Indexed on 2010/04/16 16:03 UTC
Read the original article Hit count: 177

Filed under:
|

Using VS2010, I can't seem to add additional test methods. If I set up my project like this

[TestMethod]
public void Test1()
{
   Assert.AreNotEqual(0,1);
}

[TestMethod]
public void Test2()
{
   Assert.AreNotEqual(0,1);
}

The only test that shows up in my Test View is Test1. How do I make sure Test2 gets in to that list?

© Stack Overflow or respective owner

Related posts about visual-studio-2010

Related posts about mstest