I am trying to map which test case (defined under src/test/java
) ran on which classes (defined under src/main/java
)
I tried examining the Jacoco Report and Testng report but failed to find a correlation between the test cases (Unit test functions) and the classes on which it tests
Any Hints on how to proceed will be much appreciated!
Here I am trying to find and build a tree on which test cases ran on which classes
Something like in the pic here
I need to output that
test1 , test2, test3
ran on class AppFeature
and test4
ran on class AppLogin