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 732 426 214 100 %
RunnerView 333 202 109 99 %
RunnerFrame 69 26 8 100 %
RunnerModel 105 47 9 100 %
RunnerViewTestCase 225 151 88 100 %

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