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 501 240 123 0 %
ModeButton 54 21 5 0 %
KernelFigureFields 78 38 18 0 %
KernelFrame 369 181 100 0 %

Class statements covered missed weight  
KernelFrame 100 0 100 81.30 %
KernelFigureFields 18 0 18 14.63 %
ModeButton 5 0 5 4.07 %

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