Clover Coverage Report - Checkstyle
Coverage timestamp: Fri May 9 2008 10:48:13 EST
../../../../../../img/srcFileCovDistChart0.png 88% of files have more coverage
8   24   2   4
0   18   0.25   2
2     1  
1    
 
  AllTests       Line # 6 0% 0.0
6 8 2 2 0.25
 
No Tests
 
1    package com.puppycrawl.tools.checkstyle.checks.blocks;
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.blocks");
15   
16  0 suite.addTest(new TestSuite(AvoidNestedBlocksCheckTest.class));
17  0 suite.addTest(new TestSuite(EmptyBlockCheckTest.class));
18  0 suite.addTest(new TestSuite(LeftCurlyCheckTest.class));
19  0 suite.addTest(new TestSuite(NeedBracesCheckTest.class));
20  0 suite.addTest(new TestSuite(RightCurlyCheckTest.class));
21   
22  0 return suite;
23    }
24    }