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 1195 667 290 70 %
ShowContext 762 407 186 53 %
ShowContextListener 44 5 0 100 %
ColorSelectionTestCase 147 101 29 100 %
ColorSelection 242 154 75 100 %

Class statements covered missed weight  
ShowContext 186 98 88 100.00 %

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