3
Visual Studio 2008 유닛 테스트 프레임 워크에 NUnit의 TestCaseAttribute가 이 있습니까?VS 유닛 테스트 프레임 워크에서 NUnit의 TestCaseAttribute와 동등한 것
[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
}
가능한 복제본 [MSTest는 NUnits TestCase와 동일한 기능을 수행합니까?] (http://stackoverflow.com/questions/1010685/does-mstest-have-an-equivalent-to-nunits-testcase) –