Comment 0 for bug 1065254

Revision history for this message
Marty (cheeseheadtotherescue) wrote :

If I have a class with a TestFixtureAttribute that uses the NON-Parameterless constructor, Hitting F12 or right clicking->Open Test does not navigate to the test. There is also a message saying "Source: no source available"

    //doesn't work
    [TestFixture(42)]
    public class MyTestClass
    {
        [Test]
        public void MyTest()
        {

        }
    }

    //works
    [TestFixture()]
    public class MyTestClass
    {
        [Test]
        public void MyTest()
        {

        }
    }