← Back to team overview

nunit-core team mailing list archive

[Bug 747581] [NEW] Failure in TestFixtureTearDown not reported

 

Public bug reported:

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();
        }
    }

** Affects: nunitv2
     Importance: Undecided
         Status: New

-- 
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

Status in NUnit V2 Test Framework:
  New

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();
          }
      }



Follow ups

References