KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > com > puppycrawl > tools > checkstyle > api > AllTests


1 package com.puppycrawl.tools.checkstyle.api;
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.api");
15
16         suite.addTest(new TestSuite(AbstractViolationReporterTest.class));
17         suite.addTest(new TestSuite(DetailASTTest.class));
18         suite.addTest(new TestSuite(TokenTypesTest.class));
19
20         return suite;
21     }
22 }
23
Popular Tags