nicole-m - 2012-08-17

Is it possible to get a coverage report that gives me an overview about which lines exactly are covered/ not covered in a table form?

Up to now, I just found the report that gives you an overview about how many of all lines were covered in total and an eclipse plugin that highlights the lines of the code in different colours.

What I am searching for is a mix of these both, a text output with the following information (example):

Class: LinearSearch.java
Lines covered: 1,2,5,6,10,11  (this would be the lines highlighted in green)
Lines partially covered: 4,7,8   (this would be the lines highlighted in yellow)
Lines not covered: 9    (this would be the lines highlighted in red)

Is there any possibility of getting such an overview from EMMA?