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 junit.framework.Test;
7   import junit.framework.TestSuite;
8   
9   
10  /***
11   * Tests for the net.sourceforge.pmd.ant package
12   *
13   * @author Boris Gruschko ( boris at gruschko.org )
14   * @version $Id: AntTests.java,v 1.3 2003/11/20 16:01:01 tomcopeland Exp $
15   */
16  public class AntTests
17  {
18    /***
19     * test suite
20     *
21     * @return test suite
22     */
23    public static Test suite(  )
24    {
25      TestSuite suite = new TestSuite( "Test for test.net.sourceforge.pmd.ant" );
26  
27      //$JUnit-BEGIN$
28      suite.addTestSuite( FormatterTest.class );
29      suite.addTestSuite( PMDTaskTest.class );
30  
31      //$JUnit-END$
32      return suite;
33    }
34  }
35  
36  
37  /*
38   * $Log: AntTests.java,v $
39   * Revision 1.3  2003/11/20 16:01:01  tomcopeland
40   * Changing over license headers in the source code
41   *
42   * Revision 1.2  2003/10/07 18:49:19  tomcopeland
43   * Added copyright headers
44   *
45   * Revision 1.1  2003/09/29 14:32:30  tomcopeland
46   * Committed regression test suites, thanks to Boris Gruschko
47   *
48   */