← Back to team overview

nunit-core team mailing list archive

[Bug 747581] Re: Failure in TestFixtureTearDown not reported in console runner

 

** Changed in: nunitv2/trunk
       Status: Triaged => Fix Committed

-- 
You received this bug notification because you are a member of NUnit
Developers, which is subscribed to NUnit V2.
https://bugs.launchpad.net/bugs/747581

Title:
  Failure in TestFixtureTearDown not reported in console runner

Status in NUnit V2 Test Framework:
  Fix Committed
Status in NUnit V2 2.5 series:
  Fix Committed
Status in NUnit V2 trunk series:
  Fix Committed

Bug description:
  The following does not end with a test failure and I think it should:

  [TestFixture]public class Bug
      {
          [Test]public void Test()
          {
              
          }
          [TestFixtureTearDown]public void TearDown()
          {
              throw new AbandonedMutexException();
          }
      }



References