nunit-core team mailing list archive
-
nunit-core team
-
Mailing list archive
-
Message #02012
[Bug 841894] Re: UI won't run tests marked Explicit
I'm still unable to duplicate this problem. Here's the code I'm using...
Assembly1:
namespace Bug841894
{
public abstract class AbstractTestClass
{
[Test]
public void SomeTest() { }
[Test, Explicit]
public void ExplicitTest() { }
}
}
Assembly2:
namespace Bug841894
{
public class DerivedTestClass : AbstractTestClass
{
[Test]
public void AnotherTest() { }
}
}
If you can modify this and make it reproduce the problem you
encountered, I'll try to debug it further.
** Changed in: nunitv2
Status: New => Incomplete
--
You received this bug notification because you are a member of NUnit
Developers, which is subscribed to NUnit V2.
https://bugs.launchpad.net/bugs/841894
Title:
UI won't run tests marked Explicit
Status in NUnit V2 Test Framework:
Incomplete
Bug description:
NUnit 2.5.10, Gui runner:
A test marked [Explicit] can only be run from the Gui runner if it is
the first test run. After that, it is disabled.
To manage notifications about this bug go to:
https://bugs.launchpad.net/nunitv2/+bug/841894/+subscriptions
References