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 266 70 22 0 %
ApplicationEvent 51 15 3 0 %
Application 153 48 19 0 %
ApplicationListener 62 7 0 100 %

Class statements covered missed weight  
Application 19 0 19 86.36 %
ApplicationEvent 3 0 3 13.64 %

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