Resharper - Show inconclusive tests as inconclusive and not unsuccessful?

Does anyone know if there is a way to show inconclusive tests in resharper as unconvincing rather than unsuccessful? I would like to keep the tests that still need to be implemented, except for a test that does not work due to an error.

+3
source share
1 answer

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.

-2
source

All Articles