1   package test.net.sourceforge.pmd.stat;
2   
3   import junit.framework.Test;
4   import junit.framework.TestSuite;
5   
6   
7   /***
8    * tests for the net.sourceforge.pmd.stat package
9    *
10   * @author Boris Gruschko ( boris at gruschko.org )
11   * @version $Id: StatTests.java,v 1.3 2006/02/10 14:26:27 tomcopeland Exp $
12   */
13  public class StatTests {
14      /***
15       * test suite
16       *
17       * @return test suite
18       */
19      public static Test suite() {
20          TestSuite suite = new TestSuite("Test for test.net.sourceforge.pmd.stat");
21  
22          //$JUnit-BEGIN$
23          suite.addTestSuite(MetricTest.class);
24          suite.addTestSuite(StatisticalRuleTest.class);
25  
26          //$JUnit-END$
27          return suite;
28      }
29  }
30  
31  
32  /*
33   * $Log: StatTests.java,v $
34   * Revision 1.3  2006/02/10 14:26:27  tomcopeland
35   * Huge reformatting checkin
36   *
37   * Revision 1.2  2006/02/10 14:15:22  tomcopeland
38   * Latest source from Pieter, everything compiles and all the tests pass with the exception of a few missing rules in basic-jsp.xml
39   *
40   * Revision 1.1  2003/09/29 14:32:32  tomcopeland
41   * Committed regression test suites, thanks to Boris Gruschko
42   *
43   */