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 2174 1433 792 100 %
GroupsFrame 25 18 6 100 %
ChannelTableModelTestCase 93 49 18 100 %
ChannelsTableModel 101 45 30 100 %
GroupsViewTestCase 132 77 34 100 %
GroupsTableModel 131 69 38 100 %
GroupsTableModelTestCase 155 87 44 100 %
GroupsView 302 193 115 100 %
GroupsPresentationModel 541 426 172 100 %
GroupsPresentationModelTestCase 694 469 335 100 %

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