← Back to team overview

nunit-core team mailing list archive

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

 

** Summary changed:

- Failure in TestFixtureTearDown not reported
+ Failure in TestFixtureTearDown not reported in console runner

** Changed in: nunitv2
       Status: New => Triaged

** Changed in: nunitv2
   Importance: Undecided => High

** Changed in: nunitv2
     Assignee: (unassigned) => Charlie Poole (charlie.poole)

** Changed in: nunitv2
    Milestone: None => 2.6.0b1

** Also affects: nunitv2/2.5
   Importance: Undecided
       Status: New

** Also affects: nunitv2/trunk
   Importance: High
     Assignee: Charlie Poole (charlie.poole)
       Status: Triaged

** Changed in: nunitv2/2.5
       Status: New => Triaged

** Changed in: nunitv2/2.5
   Importance: Undecided => High

** Changed in: nunitv2/2.5
     Assignee: (unassigned) => Charlie Poole (charlie.poole)

** Changed in: nunitv2/2.5
    Milestone: None => 2.5.10

-- 
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:
  Triaged
Status in NUnit V2 2.5 series:
  Triaged
Status in NUnit V2 trunk series:
  Triaged

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