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 674 421 182 38 %
CueListDescription 57 32 14 0 %
BrowserModel 378 261 115 20 %
BrowserView 133 87 41 85 %
BrowserTestCase 48 19 5 100 %
Browser 58 22 7 100 %

Class statements covered missed weight  
BrowserModel 115 23 92 82.14 %
CueListDescription 14 0 14 12.50 %
BrowserView 41 35 6 5.36 %

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