I have a coded UI project, in which I have a set of test cases recorded (methods).
Is there a way to obtain the list of test cases programmatically (in C#) and also get the description I have given during the recording phase?
I have a coded UI project, in which I have a set of test
Share
If your program is .NET, you can use reflection to search for any method or class with the TestMethod/TestClass attribute.
The same concept is used in C# Tutorial – Method Attributes And Reflection and some more details about reflection is in Reflection in .NET.