Like we have a test report containing information like
<testcase classname="ABC" name="should fulfill some condition" time="12.22">
How can I get this information in another test class? For example, Suppose we have a Test Class One which has some tests implemented using Scala Test. How can get the list of all tests with description implemented in Class One in another test class Two?
You can call
testNamesto get a set of all tests.