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