With the help of, MSTestyou can apply the attribute Ignore, and test runners will ignore the test (and designate it as “ignored” rather than “unconvincing”).
This allows you to place placeholders / partially implement / ignore broken tests.
eg
[Ignore]
[TestMethod]
public void SomeTest()
{
Assert.IsFalse(true);
}
will not result in a failed test, but will be ignored.
source
share