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 687 279 119 95 %
DisplayPreferences 74 25 8 63 %
DefaultPreferences 188 70 28 89 %
Preferences 75 10 0 100 %
PreferencesWriter 102 58 38 100 %
AllPreferences 248 116 45 100 %

Class statements covered missed weight  
DisplayPreferences 8 5 3 50.00 %
DefaultPreferences 28 25 3 50.00 %

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