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 1093 825 362 100 %
NotEqualException 25 3 0 100 %
EqualsTester 91 43 10 100 %
DefaultEqualsTester 143 98 27 100 %
DebugEqualsTester 175 128 50 100 %
DebugEqualsTesterTestCase 307 254 116 100 %
DefaultEqualsTesterTestCase 352 299 159 100 %

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