Nunit - How to get all test lines (written in test ) before execution (in c#)

54 views Asked by At

Below is Nunit test.I want to get all test lines before test execution.

public void Test01()
{
abc = 1;
pqr();
xyz();
lmn = 9;
zxy();
}
0

There are 0 answers