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

-- 
You received this message because you are subscribed to the Google Groups 
"JaCoCo and EclEmma Users" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
To view this discussion on the web visit 
https://groups.google.com/d/msgid/jacoco/0767c042-5e5a-4ab3-bc5c-354568ab1875%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to