Clover Coverage Report - Checkstyle
Coverage timestamp: Fri May 9 2008 10:48:13 EST
../../../../../../img/srcFileCovDistChart0.png 88% of files have more coverage
4   20   2   2
0   14   0.5   2
2     1  
1    
 
  AllTests       Line # 6 0% 0.0
6 4 2 2 0.5
 
No Tests
 
1    package com.puppycrawl.tools.checkstyle.checks.duplicates;
2   
3    import junit.framework.Test;
4    import junit.framework.TestSuite;
5   
 
6    public class AllTests {
7   
 
8  0 toggle public static void main(String[] args) {
9  0 junit.textui.TestRunner.run(AllTests.suite());
10    }
11   
 
12  0 toggle public static Test suite() {
13  0 TestSuite suite =
14    new TestSuite("Test for com.puppycrawl.tools.checkstyle.checks.duplicates");
15   
16  0 suite.addTest(new TestSuite(StrictDuplicateCodeCheckTest.class));
17   
18  0 return suite;
19    }
20    }