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 331 264 175 0 %
Hello 15 11 3 0 %
Simon 316 253 172 0 %

Class statements covered missed weight  
Simon 172 0 172 98.29 %
Hello 3 0 3 1.71 %

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