1 /***
2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3 */
4 package test.net.sourceforge.pmd.rules.strictexception;
5
6 import junit.framework.Test;
7 import junit.framework.TestSuite;
8
9
10 /***
11 * tests for the net.sourceforge.pmd.rules.strictexception package
12 *
13 * @author Boris Gruschko ( boris at gruschko.org )
14 * @version $Id: StrictExceptionRulesTests.java,v 1.2 2003/11/26 15:04:33 tomcopeland Exp $
15 */
16 public class StrictExceptionRulesTests
17 {
18 /***
19 * test suite
20 *
21 * @return test suite
22 */
23 public static Test suite( )
24 {
25 TestSuite suite =
26 new TestSuite( "Test for test.net.sourceforge.pmd.rules.strictexception" );
27
28 //$JUnit-BEGIN$
29 suite.addTestSuite( AvoidCatchingThrowableRuleTest.class );
30 suite.addTestSuite( ExceptionSignatureDeclarationRuleTest.class );
31 suite.addTestSuite( ExceptionTypeCheckingRuleTest.class );
32
33 //$JUnit-END$
34 return suite;
35 }
36 }
37
38
39 /*
40 * $Log: StrictExceptionRulesTests.java,v $
41 * Revision 1.2 2003/11/26 15:04:33 tomcopeland
42 * Fixed a bug in OverrideBothEqualsAndHashcodeRule; it no longer reports a false positive when equals() is passed the fully qualified name of Object; thx to Philippe Couton for the report. Also continuing to clean up license headers.
43 *
44 * Revision 1.1 2003/09/29 14:32:32 tomcopeland
45 * Committed regression test suites, thanks to Boris Gruschko
46 *
47 */
This page was automatically generated by Maven