← Back to team overview

nunit-core team mailing list archive

[Bug 672456] Re: non-clickable stack trace with TD.NET

 

This appears from the description to be a TD.Net problem.

FYI, if it turned out to be an NUnit problem, Jamie would report it
anyway.

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

-- 
non-clickable stack trace with TD.NET
https://bugs.launchpad.net/bugs/672456
You received this bug notification because you are a member of NUnit
Developers, which is subscribed to NUnit V2.

Status in NUnit V2 Test Framework: Invalid

Bug description:
Hello,

while using 2.5.7, the following code doesn't produce a clickable stacktrace with TD.Net.  I've already reported it to Jamie, but just double posting here in case it is an issue with NUnit.  Sorry if it isn't.

The following test does not produce a clickable stack trace.

 public class Foo
       {
           public Foo(object test)
           {
               test.ToString();

           }
           public void DoSomething()
           {
               throw new InvalidOperationException();

           }
       }
   [TestFixture]
   public class Bug
   {
       private Foo _foo;

       [TestFixtureSetUp]
       public void Setup()
       {
           _foo = new Foo(null);
           _foo.DoSomething();
       }

       [Test]public void Test()
       {
           Assert.AreEqual(1,1);
       }

   }

thanks

cliff





References