nunit-core team mailing list archive
-
nunit-core team
-
Mailing list archive
-
Message #01564
[Bug 726313] Re: Failure in Assembly level Action attribute causes crash
Interesting - I can't reproduce this error using the NUnit GUI runner -
only through Nant.
--
You received this bug notification because you are a member of NUnit
Developers, which is subscribed to NUnit V2.
https://bugs.launchpad.net/bugs/726313
Title:
Failure in Assembly level Action attribute causes crash
Status in NUnit V2 Test Framework:
Triaged
Bug description:
If an assembly-level action attribute causes an error or failure in
it's start phase, a null reference occurs in TestSuite.MarkTestFailed
when attempting to acess this.FixtureType.Name.
Before the introduction of action attributes it was not possible to
have a failure in setup unless there was a fixture, so no test for
FixtureType being null was made. We need to test for a non-null
fixtureType before trying to access it. This will also apply to
marking child tests as invalid or ignored - essentially, all
references to FixtureType on the test suite must be guarded now.
Follow ups
References