While checking my jacoco report, I noticed some files doesn't have lines highlighted. It has the method name highlighted, but not any of the statements in the method. At the same time, other files have all the lines highlighted in either red/green which is what I was expecting. So why are some of the files in the same report doesn't have anything highlighted? I read the FAQ but it would seem if I messed something up in the report generation, none of the lines would be highlighted? When I tried generating the report with the wrong class files, all the lines would be highlighted in red. So what am I missing that's causing some of the lines to be not highlighted?
I'm using maven and am doing code coverage on a java project. thanks
Let's take a look on bytecode of a class:
it shows
So information in bytecode about lines contains only one line for method
getUserShoppingListByListId
and JaCoCo shows exactly what it sees.I guess that this happens, because you instrument and analyze classes that are weaved by AspectJ instead of instrumentation and analysis of original classes. See https://github.com/jacoco/jacoco/issues/476#issuecomment-271118961 that discusses similar issue and provides example of JaCoCo usage with AspectJ Compile-Time Weaving.