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 371 205 100 1 %
JettyLogger 105 44 18 0 %
WebLanbox 131 86 45 0 %
WebServer 135 75 37 3 %

Class statements covered missed weight  
WebLanbox 45 0 45 45.45 %
WebServer 37 1 36 36.36 %
JettyLogger 18 0 18 18.18 %

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