Coverage

The Lassi software gets tested using automated (JUnit) testcases. While running these testcases, code coverage information is collected. This coverage information shows the percentage of code that actually gets executed during the tests. This is intended to provide an idea about the quality of the testcases and helps in finding dead code.

Class loc nloc statements coverage  
TOTAL 330 173 68 0 %
TestTableModel 56 33 10 0 %
TableCellSelectionTest 77 36 13 0 %
FrameFadeTest 114 52 21 0 %
CustomTableHeaderRenderer 83 52 24 0 %

Class statements covered missed weight  
CustomTableHeaderRenderer 24 0 24 35.29 %
FrameFadeTest 21 0 21 30.88 %
TableCellSelectionTest 13 0 13 19.12 %
TestTableModel 10 0 10 14.71 %

loc = lines of code count
nloc = non-comment lines of code count
statements = number of Java statements
coverage = percentage of statements covered