1   package test.net.sourceforge.pmd.stat;
2   
3   import org.junit.runner.RunWith;
4   import org.junit.runners.Suite;
5   import org.junit.runners.Suite.SuiteClasses;
6   
7   
8   /**
9    * tests for the net.sourceforge.pmd.stat package
10   *
11   * @author Boris Gruschko ( boris at gruschko.org )
12   * @version $Id: StatTests.java 5043 2007-02-09 01:38:14Z allancaplan $
13   */
14  @RunWith(Suite.class)
15  @SuiteClasses({MetricTest.class, StatisticalRuleTest.class})
16  public class StatTests {
17  }
18  
19  
20  /*
21   * $Log$
22   * Revision 1.4  2007/02/09 01:38:09  allancaplan
23   * Moving to JUnit 4
24   *
25   * Revision 1.3  2006/02/10 14:26:27  tomcopeland
26   * Huge reformatting checkin
27   *
28   * Revision 1.2  2006/02/10 14:15:22  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.1  2003/09/29 14:32:32  tomcopeland
32   * Committed regression test suites, thanks to Boris Gruschko
33   *
34   */