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