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 341 168 79 47 %
MacApplicationTestCase 81 43 19 5 %
MacApplication 202 118 60 60 %
MacApplicationListener 58 7 0 100 %

Class statements covered missed weight  
MacApplication 60 36 24 57.14 %
MacApplicationTestCase 19 1 18 42.86 %

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