Hello Everyone,
I have a coverage related question. I wanted to check if it is possible to get a suit-wise and test case-wise code coverage. In other words, when a integration/unit test suite is run, is there a way to check which all the classes and methods are being covered by individual tests?
Ex:
Code base:
class1{
method1(){
}
method2{
}
}
my test suite:
test1 covers method1
test2 covers method2
Code coverage report I am looking for is something like below:
<test test1>
<classes class1>
<methods method1/>
</classes>
</test>
<test test2>
<classes class1>
<methods method2/>
</classes>
</test>
Please let me know if this is possible.
Thanks
Kiran