JetBrains / TeamCity.VSTest.TestAdapter

Apache License 2.0
30 stars 14 forks source link

Inconclusive NUnit tests reported as successful #23

Closed NikolayPianikov closed 6 years ago

NikolayPianikov commented 6 years ago

Steps to reproduce:

Expected result: Test is reported as Skipped.

Actual Result: Test is reported as Passed.

Sample:

using NUnit.Framework;

namespace Testnamespace
{
    public class TestClass
    {
        [Test]
        public void NotRunTest()
        {
            Assume.That(false);
        }
    }
}

Originally from https://youtrack.jetbrains.com/issue/TW-56771