Hi,

On Monday, October 2, 2017 at 2:56:48 PM UTC+2, juzer wrote: 
>
> So the question is whether there is something wrong here or this is simply 
> how JaCoCo works?
>

Something seems to be wrong here, because coverage after execution of

public class ATest {
  @org.junit.Test
  public void a() {
    new A().a();
  }
}

public class BTest {
  @org.junit.Test
  public void b() {
    new B().b();
  }
}

for

public class A {
  void a() {
  }
}

public class B {
  void b() {
  }
}

is 100% for both A and B classes.
And can't say what's wrong in your case in absence of reproducer/example.

-- 
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/1a9025b1-03c8-428d-8388-5da4e4091a53%40googlegroups.com.
For more options, visit https://groups.google.com/d/optout.

Reply via email to