Mid Testing

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() { }

More from C# Programming Tutorial

All questions for this course