01: /**
02: * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
03: */package test.net.sourceforge.pmd.ant;
04:
05: import org.junit.runner.RunWith;
06: import org.junit.runners.Suite;
07: import org.junit.runners.Suite.SuiteClasses;
08:
09: /**
10: * Tests for the net.sourceforge.pmd.ant package
11: *
12: * @author Boris Gruschko ( boris at gruschko.org )
13: * @version $Id: AntTests.java 5043 2007-02-09 01:38:14Z allancaplan $
14: */
15: @RunWith(Suite.class)
16: @SuiteClasses({FormatterTest.class,PMDTaskTest.class})
17: public class AntTests {
18: }
19:
20: /*
21: * $Log$
22: * Revision 1.6 2007/02/09 01:37:59 allancaplan
23: * Moving to JUnit 4
24: *
25: * Revision 1.5 2006/02/10 14:26:25 tomcopeland
26: * Huge reformatting checkin
27: *
28: * Revision 1.4 2006/02/10 14:15:19 tomcopeland
29: * Latest source from Pieter, everything compiles and all the tests pass with the exception of a few missing rules in basic-jsp.xml
30: *
31: * Revision 1.3 2003/11/20 16:01:01 tomcopeland
32: * Changing over license headers in the source code
33: *
34: * Revision 1.2 2003/10/07 18:49:19 tomcopeland
35: * Added copyright headers
36: *
37: * Revision 1.1 2003/09/29 14:32:30 tomcopeland
38: * Committed regression test suites, thanks to Boris Gruschko
39: *
40: */
|