MSTest Not Finding New Tests
- by Blake Blackwell
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?