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 216 51 14 14 %
ArraysOfArrays 32 10 4 0 %
Primitives 47 13 8 0 %
Inherited 26 5 0 100 %
Static 26 5 0 100 %
Normal 27 5 0 100 %
Container 27 5 0 100 %
Arrays 31 8 2 100 %

Class statements covered missed weight  
Primitives 8 0 8 66.67 %
ArraysOfArrays 4 0 4 33.33 %

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