What are skipped tests in visual studio?
问题 I tried to run Visual Studio tests in ASP.NET MVC by pressing "Run All" but all tests were skipped. Why did this happen and how can I run all tests? Here is a screenshot: 回答1: Check if the test has a Ignore attribute. 回答2: Tests which use the Inconclusive result will appear as skipped. So VS 2010 inconclusive == VS 2012 skipped ex: Assert.Inconclusive("This test didn't exactly fail, but we can't be certain the results are good.") Will read as skipped in the test window 回答3: I got this in VS