Hi,
Jacoco seems only to have a coverage report for the main classes. What if I
want to get the coverage report for the tests?
For example, if I have a Test Class
public class ExampleTest {
@Test
public void test1() {
new Example().doSomething(1);
}
and a Main Class
public Class Example{
public void doSomething(int p){
...
}
}
Of course, the report will contain the coverage in Example.java, but it
doesn't show the coverage in ExampleTest.java even though I ran this test.
Can I get it through Jacoco?
--
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/554f128f-3264-4c3c-967c-6d27786f49a1n%40googlegroups.com.