EclEmma Line Number Java Eclipse Plugin Output

I installed EclEmma (Code Coverage Eclipse Plugin). When I create my EclEmma main code lines so that they are used or not in this run, my question is whether EclEmma can output which line number was executed and which is not or can select only lines? because I want to compare two large source codes, I need line numbers. It can count the total number of lines that have been executed, and it is strange to me that it does not output line numbers!

enter image description here

+8
java eclipse eclemma
source share
1 answer

Line numbers are provided in EclEmma XML reports (JaCoCo). You can create them with either Ant, Gradle or Maven, or export coverage report data from Eclipse ( File/Export/.../Coverage Report ).

+3
source share

All Articles