KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > test > net > sourceforge > pmd > ant > AntTests


1 /**
2  * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3  */

4 package test.net.sourceforge.pmd.ant;
5
6 import junit.framework.Test;
7 import junit.framework.TestSuite;
8
9
10 /**
11  * Tests for the net.sourceforge.pmd.ant package
12  *
13  * @author Boris Gruschko ( boris at gruschko.org )
14  * @version $Id: AntTests.java,v 1.5 2006/02/10 14:26:25 tomcopeland Exp $
15  */

16 public class AntTests {
17     /**
18      * test suite
19      *
20      * @return test suite
21      */

22     public static Test suite() {
23         TestSuite suite = new TestSuite("Test for test.net.sourceforge.pmd.ant");
24
25         //$JUnit-BEGIN$
26
suite.addTestSuite(FormatterTest.class);
27         suite.addTestSuite(PMDTaskTest.class);
28
29         //$JUnit-END$
30
return suite;
31     }
32 }
33
34
35 /*
36  * $Log: AntTests.java,v $
37  * Revision 1.5 2006/02/10 14:26:25 tomcopeland
38  * Huge reformatting checkin
39  *
40  * Revision 1.4 2006/02/10 14:15:19 tomcopeland
41  * Latest source from Pieter, everything compiles and all the tests pass with the exception of a few missing rules in basic-jsp.xml
42  *
43  * Revision 1.3 2003/11/20 16:01:01 tomcopeland
44  * Changing over license headers in the source code
45  *
46  * Revision 1.2 2003/10/07 18:49:19 tomcopeland
47  * Added copyright headers
48  *
49  * Revision 1.1 2003/09/29 14:32:30 tomcopeland
50  * Committed regression test suites, thanks to Boris Gruschko
51  *
52  */

53
Popular Tags