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 897 503 211 89 %
Status 42 15 2 50 %
MethodTestResult 96 57 22 55 %
RootTestResult 160 111 45 82 %
TestResultReporter 138 81 44 89 %
ParentTestResult 51 19 5 100 %
TestResult 80 26 10 100 %
PackageTestResult 70 39 16 100 %
ClassTestResult 90 54 18 100 %
GrandParentTestResult 80 48 21 100 %
HtmlTestResultPrinter 90 53 28 100 %

Class statements covered missed weight  
MethodTestResult 22 12 10 41.67 %
RootTestResult 45 37 8 33.33 %
TestResultReporter 44 39 5 20.83 %
Status 2 1 1 4.17 %

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