I have nunit test with some test cases.
[TestCase(1,Description="first")]
[TestCase(2, Description="second")]
public void A(int a)
{
Assert.True(a==1);
}
How can I get description of each test case. I try do it at TestFinished() method of EventListener, but I can get only array of descriptions.