1 /***
2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3 */
4 package test.net.sourceforge.pmd.ast;
5
6 import junit.framework.Test;
7 import junit.framework.TestSuite;
8
9 public class ASTTests
10 {
11 /***
12 * test suite
13 *
14 * @return test suite
15 */
16 public static Test suite( )
17 {
18 TestSuite suite = new TestSuite( "Test for test.net.sourceforge.pmd.ast" );
19
20 //$JUnit-BEGIN$
21 suite.addTestSuite( ASTImportDeclarationTest.class );
22 suite.addTestSuite( ASTVariableDeclaratorIdTest.class );
23 suite.addTestSuite( AccessNodeTest.class );
24 suite.addTestSuite( AssertTest.class );
25 suite.addTestSuite( ClassDeclTest.class );
26 suite.addTestSuite( FieldDeclTest.class );
27 suite.addTestSuite( MethodDeclTest.class );
28 suite.addTestSuite( SimpleNodeTest.class );
29
30 //$JUnit-END$
31 return suite;
32 }
33 }
34
35
36 /*
37 * $Log: ASTTests.java,v $
38 * Revision 1.2 2003/11/20 16:01:02 tomcopeland
39 * Changing over license headers in the source code
40 *
41 * Revision 1.1 2003/09/29 14:32:31 tomcopeland
42 * Committed regression test suites, thanks to Boris Gruschko
43 *
44 */
This page was automatically generated by Maven