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 970 624 139 100 %
GetCueListUsage 52 13 3 100 %
NoteOff 52 13 3 100 %
CueListRemoveStep 52 13 3 100 %
GetTotalUsage 52 13 3 100 %
GetFreeList 52 13 3 100 %
ExtraCommandsTestCase 710 559 124 100 %

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