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
23 suite.addTestSuite(MetricTest.class);
24 suite.addTestSuite(StatisticalRuleTest.class);
25
26
27 return suite;
28 }
29 }
30
31
32
33
34
35
36
37
38
39
40
41
42
43