How do you ignore tests temporarily in MSTest?
Use the [Ignore("Reason")] attribute on the test method or class.
[Ignore("Test is temporarily disabled")]
[TestMethod]
public void SkippedTest() { }
Use the [Ignore("Reason")] attribute on the test method or class.
[Ignore("Test is temporarily disabled")]
[TestMethod]
public void SkippedTest() { }