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.1 2003/09/29 14:32:32 tomcopeland Exp $
12 */
13 public class StatTests
14 {
15 /***
16 * test suite
17 *
18 * @return test suite
19 */
20 public static Test suite( )
21 {
22 TestSuite suite = new TestSuite( "Test for test.net.sourceforge.pmd.stat" );
23
24
25 suite.addTestSuite( MetricTest.class );
26 suite.addTestSuite( StatisticalRuleTest.class );
27
28
29 return suite;
30 }
31 }
32
33
34
35
36
37
38
39