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
22
23
24
25
26
27
28
29
30
31
32
33
34