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 657 238 90 38 %
KernelFigures 66 19 4 0 %
KernelFigure 95 28 10 0 %
Kernel 270 110 48 23 %
KernelDaemon 162 71 28 82 %
ClockListener 34 4 0 100 %
Constants 30 6 0 100 %

Class statements covered missed weight  
Kernel 48 11 37 66.07 %
KernelFigure 10 0 10 17.86 %
KernelDaemon 28 23 5 8.93 %
KernelFigures 4 0 4 7.14 %

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