I have Created testsuits like following.
[TestCase(12,4,3)]
[TestCase(m,n,o)]
public void DivideTest(int n, int d, int q)
{
Assert.AreEqual( q, n / d );
}
I have pass the variables m = 10, n = 2 and o = 5.
But the second test case is not accessible. it throws the following error. "An attribute argument must be a constant expression, typeof expression or array creation expression of an attribute parameter type"
How to pass the variables name instead of values in test case.