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 877 496 331 93 %
ArtAddress 39 12 3 0 %
ArtUnknown 41 14 5 40 %
ArtPoll 93 41 21 76 %
ArtDmx 113 71 40 83 %
ArtPacket 134 85 39 85 %
ArtPollTestCase 48 18 8 100 %
ArtDmxTestCase 54 24 16 100 %
ArtPollReplyTestCase 103 68 53 100 %
ArtPollReply 252 163 146 100 %

Class statements covered missed weight  
ArtDmx 40 33 7 29.17 %
ArtPacket 39 33 6 25.00 %
ArtPoll 21 16 5 20.83 %
ArtAddress 3 0 3 12.50 %
ArtUnknown 5 2 3 12.50 %

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