Cannot open test from Test Explorer for tests in a Parameterized Test Fixture
Bug #1065254 reported by
Marty
This bug affects 1 person
Affects | Status | Importance | Assigned to | Milestone | |
---|---|---|---|---|---|
NUnit Test Adapter |
Fix Released
|
High
|
Charlie Poole |
Bug Description
If I have a class with a TestFixtureAttr
//doesn't work
[TestFixtur
public class MyTestClass
{
[Test]
public void MyTest()
{
}
}
//works
[TestFixture()]
public class MyTestClass
{
[Test]
public void MyTest()
{
}
}
Version: NUnit Test Adapter Beta 2.
Related branches
tags: | added: vs-adapter |
description: | updated |
affects: | nunitv2 → nunit-vs-adapter |
tags: | removed: vs-adapter |
Changed in nunit-vs-adapter: | |
status: | Confirmed → Triaged |
status: | Triaged → In Progress |
importance: | Medium → High |
Changed in nunit-vs-adapter: | |
status: | In Progress → Fix Committed |
Changed in nunit-vs-adapter: | |
status: | Fix Committed → Fix Released |
To post a comment you must log in.
I've verified this. The "no source available" message is the key, since VS obviously can't navigate to the test if it doesn't know the name of the source file containing it. This is most likely an NUnit bug, since we provide the source info for each test to the Test Window.