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 402 191 72 92 %
InputDeviceSelectionDialog 61 17 4 0 %
OutputDeviceSelectionDialog 61 17 4 50 %
DeviceSelectionDialogTestCase 124 62 27 100 %
DeviceSelectionDialog 156 95 37 100 %

Class statements covered missed weight  
InputDeviceSelectionDialog 4 0 4 66.67 %
OutputDeviceSelectionDialog 4 2 2 33.33 %

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