MudassarRasool / mb-unit

Automatically exported from code.google.com/p/mb-unit
0 stars 0 forks source link

R# plugin reports pending/disabled/explicit tests as failed #731

Closed GoogleCodeExporter closed 8 years ago

GoogleCodeExporter commented 8 years ago
Run the following fixture from R#.

[TestFixture]
public class SampleFixture
{
  [Test]
  public void Test() {}

  [Test, Explicit] 
  public void ExplicitTest() {}

  [Test, Pending]
  public void PendingTest() {}

  [Test, Explicit]
  public void DisabledTest() {}

  [Test, Ignore]
  public void IgnoredTest() {}
}

The pending and the ignored tests are reported as "ignored" as expected.
But the explicit and disabled tests are reported incorrectly as "failed".

Original issue reported on code.google.com by Yann.Tre...@gmail.com on 22 Sep 2010 at 6:28

GoogleCodeExporter commented 8 years ago

Original comment by Yann.Tre...@gmail.com on 22 Sep 2010 at 6:30

GoogleCodeExporter commented 8 years ago

Original comment by Yann.Tre...@gmail.com on 20 Oct 2010 at 6:55

GoogleCodeExporter commented 8 years ago

Original comment by Yann.Tre...@gmail.com on 23 Oct 2010 at 9:29

GoogleCodeExporter commented 8 years ago

Original comment by Yann.Tre...@gmail.com on 5 Dec 2010 at 11:33