← Back to team overview

nunit-core team mailing list archive

[Bug 1033967] Re: The "Text Output" Tab doesn't display Trace-Output anymore

 

I created a project containing the same example as above and opened it
in NUnit 2.6.1. Initially no test  displayed. I then opened the Text
Output settings dialog ( Tools | Settings |Text Output) and checked
Trace Output. The trace displayed.

The feature works but NUnit 2.6 uses the Settings file rather than the
config file to control it.

Charlie

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

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

Title:
  The "Text Output" Tab doesn't display Trace-Output anymore

Status in NUnit V2 Test Framework:
  Invalid

Bug description:
  It looks like there's a problem with the "Text Output" tab in NUnit
  2.6. It doesn't display Trace.WriteLines anymore.

  The following test displays "hello world!" in the Text Output tab of
  NUnit 2.5, but in NUnit 2.6 the window stays empty:

    [TestFixture]
    public class TraceTests {
      [Test]
      public void Test() {
        Trace.WriteLine("hello world!");
      } 
    }

To manage notifications about this bug go to:
https://bugs.launchpad.net/nunitv2/+bug/1033967/+subscriptions


References