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 org.junit.runner.RunWith;
7 import org.junit.runners.Suite;
8 import org.junit.runners.Suite.SuiteClasses;
9
10 @RunWith(Suite.class)
11 @SuiteClasses( { ASTImportDeclarationTest.class, ASTVariableDeclaratorIdTest.class, AccessNodeTest.class, ClassDeclTest.class, FieldDeclTest.class, MethodDeclTest.class, SimpleNodeTest.class })
12 public class ASTTests {
13
14 }
15
16
17 /*
18 * $Log$
19 * Revision 1.6 2007/02/09 01:38:05 allancaplan
20 * Moving to JUnit 4
21 *
22 * Revision 1.5 2006/02/10 14:26:25 tomcopeland
23 * Huge reformatting checkin
24 *
25 * Revision 1.4 2006/02/10 14:15:19 tomcopeland
26 * Latest source from Pieter, everything compiles and all the tests pass with the exception of a few missing rules in basic-jsp.xml
27 *
28 * Revision 1.3 2004/04/08 18:51:07 tomcopeland
29 * Implemented RFE 925839 - Added some more detail to the UseSingletonRule.
30 *
31 * Revision 1.2 2003/11/20 16:01:02 tomcopeland
32 * Changing over license headers in the source code
33 *
34 * Revision 1.1 2003/09/29 14:32:31 tomcopeland
35 * Committed regression test suites, thanks to Boris Gruschko
36 *
37 */