** Changed in: nunit-3.0 Status: Fix Committed => Fix Released -- Duplicate test using abstract test fixtures https://bugs.launchpad.net/bugs/601108 You received this bug notification because you are a member of NUnit Developers, which is subscribed to NUnit V2.
Status in NUnit Test Framework: Fix Released Status in NUnit V2 Test Framework: Fix Released Bug description: Reported on nunit-discuss by Victor Kropp: I've found bug in NUnit 2.5.5 with abstract TestFixtures. Please find the sample in attached file. You'll see DuplicateTest 2 times (actually, as much as marked abstract classes in hierarchy) If non-abstract class is marked as TestFixture test appears only once. This bug was introduced in version 2.5.3. Code that reproduces this bug... using NUnit.Framework; namespace NUnitBug { [TestFixture] public abstract class NUnitDuplicateTestsBaseBaseBase { } [TestFixture] public abstract class NUnitDuplicateTestsBaseBase : NUnitDuplicateTestsBaseBaseBase { } public class NUnitDuplicateTests : NUnitDuplicateTestsBaseBase { [Test] public void DuplicateTest() { } } } _______________________________________________ Mailing list: https://launchpad.net/~nunit-core Post to : nunit-core@lists.launchpad.net Unsubscribe : https://launchpad.net/~nunit-core More help : https://help.launchpad.net/ListHelp