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 412 230 78 95 %
DialogView 67 31 8 75 %
DialogTitlePanel 111 70 28 93 %
DialogPanel 66 34 13 100 %
DialogPresentationModel 91 52 14 100 %
Dialog 77 43 15 100 %

Class statements covered missed weight  
DialogTitlePanel 28 26 2 50.00 %
DialogView 8 6 2 50.00 %

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