I have looked at the documentation and found nothing that sounds like this, so I came here.
I have some unit tests that work by first populating an in-memory database, using objects I create during the `@Before` part of the unit test.
The downside is that JaCoCo's reports are showing that the code in the constructor for those classes has been traversed, while actually the test itself, which happens after the database population, didn't access that code.
So, is there a way to overcome this with only JaCoCo or shall I have to do something else to avoid this issue?