nunit-core team mailing list archive
-
nunit-core team
-
Mailing list archive
-
Message #01333
[Bug 672456] [NEW] non-clickable stack trace with TD.NET
Public bug reported:
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
** Affects: nunitv2
Importance: Undecided
Status: New
--
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: New
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
Follow ups
References