Is there an NUnit's TestCaseAttribute equivalent in Visual Studio 2008 unit test framework?
You know, something like this:
[TestCase(1, 1, 1)]
[TestCase(2, 2, 2)]
[TestCase(3, 3, 3)]
public void Test1(int a, int b, int c)
{
// do stuff depending on the TestCase
}
Thanks in advance