Starting with 2.5.x, TestCaseAttributes can be used to create parametrized tests in NUnit.
Starting with 2.5.x, TestCaseAttributes can be used to create parametrized tests in NUnit. Order of parameters passed to the attribute should match the order of parameters to test method. Types should match. There is no implied conversion. This means that you should pass 1.0f instead of 1 if a float is expected as a method argument. TestAttribute is not required if TestCaseAttribute is specified.