I'm starting to run some tests using NUnit ( 3.2.1.0 from NuGet ). I've found the [TestCaseSource] attribute, which elegantly solves a concern with using NUnit for automated testing. But I can't find a way to set something like the [TestCaseSource] at the [TestFixture]/class level.
Is there a way to configure this to "Run all of the tests in this fixture for test case value 1, then run them all for test case value 2" instead of "run test 1 for all test case values, then run test 2 for all test case values, etc"?
Thanks!