KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > puppycrawl > tools > checkstyle > checks > header > AllTests


1 package com.puppycrawl.tools.checkstyle.checks.header;
2
3 import junit.framework.Test;
4 import junit.framework.TestSuite;
5
6 public class AllTests {
7
8     public static void main(String JavaDoc[] args) {
9         junit.textui.TestRunner.run(AllTests.suite());
10     }
11
12     public static Test suite() {
13         TestSuite suite =
14             new TestSuite("Test for com.puppycrawl.tools.checkstyle.checks.header");
15
16         // tests from this package
17
suite.addTest(new TestSuite(HeaderCheckTest.class));
18
19         return suite;
20     }
21 }
22
Popular Tags