01: package test.net.sourceforge.pmd.stat;
02:
03: import org.junit.runner.RunWith;
04: import org.junit.runners.Suite;
05: import org.junit.runners.Suite.SuiteClasses;
06:
07: /**
08: * tests for the net.sourceforge.pmd.stat package
09: *
10: * @author Boris Gruschko ( boris at gruschko.org )
11: * @version $Id: StatTests.java 5043 2007-02-09 01:38:14Z allancaplan $
12: */
13: @RunWith(Suite.class)
14: @SuiteClasses({MetricTest.class,StatisticalRuleTest.class})
15: public class StatTests {
16: }
17:
18: /*
19: * $Log$
20: * Revision 1.4 2007/02/09 01:38:09 allancaplan
21: * Moving to JUnit 4
22: *
23: * Revision 1.3 2006/02/10 14:26:27 tomcopeland
24: * Huge reformatting checkin
25: *
26: * Revision 1.2 2006/02/10 14:15:22 tomcopeland
27: * Latest source from Pieter, everything compiles and all the tests pass with the exception of a few missing rules in basic-jsp.xml
28: *
29: * Revision 1.1 2003/09/29 14:32:32 tomcopeland
30: * Committed regression test suites, thanks to Boris Gruschko
31: *
32: */
|