TestCase selection runs all test cases
When I Run or Debug a TestCase from the Session viewer or from the IDE navigation helper, Resharper appears to run all TestCases for that test.
This makes it rather difficult to check a test failure if there are lots of test cases. Here's the signature for one of my tests which uses a TestSource
[Test, Category("LongRunning")]
[TestCaseSource(typeof(UploadIntegrationTestsSource), "DisplayTextFiles")]
public void RunIntegrationTests(string testName, string testFile, string expectationFileName, string setupFile)
}
}
Please sign in to leave a comment.