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( ClassDeclTest.class );
25      suite.addTestSuite( FieldDeclTest.class );
26      suite.addTestSuite( MethodDeclTest.class );
27      suite.addTestSuite( SimpleNodeTest.class );
28  
29      //$JUnit-END$
30      return suite;
31    }
32  }
33  
34  
35  /*
36   * $Log: ASTTests.java,v $
37   * Revision 1.3  2004/04/08 18:51:07  tomcopeland
38   * Implemented RFE 925839 - Added some more detail to the UseSingletonRule.
39   *
40   * Revision 1.2  2003/11/20 16:01:02  tomcopeland
41   * Changing over license headers in the source code
42   *
43   * Revision 1.1  2003/09/29 14:32:31  tomcopeland
44   * Committed regression test suites, thanks to Boris Gruschko
45   *
46   */