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 379 135 55 100 %
CurrentTimeMillisResolutionTestCase 49 10 2 100 %
NanoTimeResolutionTestCase 45 11 2 100 %
NanoTimeOverheadTestCase 53 18 6 100 %
CurrentTimeMillisOverheadTestCase 54 18 6 100 %
SleepTestCase 80 34 16 100 %
TimeResolutionTestCaseA 98 44 23 100 %

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