1 /***
2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
3 */
4 package test.net.sourceforge.pmd.renderers;
5
6 import junit.framework.Test;
7 import junit.framework.TestSuite;
8
9
10 /***
11 * tests for the net.sourceforge.pmd.renderers package
12 *
13 * @author Boris Gruschko ( boris at gruschko.org )
14 * @version $Id: RenderersTests.java,v 1.3 2003/11/20 16:53:10 tomcopeland Exp $
15 */
16 public class RenderersTests
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.renderers" );
27
28 //$JUnit-BEGIN$
29 suite.addTestSuite( XMLRendererTest.class );
30 suite.addTestSuite( TextPadRendererTest.class );
31
32 //$JUnit-END$
33 return suite;
34 }
35 }
36
37
38 /*
39 * $Log: RenderersTests.java,v $
40 * Revision 1.3 2003/11/20 16:53:10 tomcopeland
41 * Changing over license headers in the source code, cleaned up a test
42 *
43 * Revision 1.2 2003/10/01 14:55:55 tomcopeland
44 * Added unit tests for TextPad integration; thanks to Jeff Epstein
45 *
46 * Revision 1.1 2003/09/29 14:32:32 tomcopeland
47 * Committed regression test suites, thanks to Boris Gruschko
48 *
49 */
This page was automatically generated by Maven