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.5 2006/02/10 14:26:25 tomcopeland Exp $
15 */
16 public class RenderersTests {
17 /***
18 * test suite
19 *
20 * @return test suite
21 */
22 public static Test suite() {
23 TestSuite suite =
24 new TestSuite("Test for test.net.sourceforge.pmd.renderers");
25
26 //$JUnit-BEGIN$
27 suite.addTestSuite(XMLRendererTest.class);
28 suite.addTestSuite(TextPadRendererTest.class);
29
30 //$JUnit-END$
31 return suite;
32 }
33 }
34
35
36 /*
37 * $Log: RenderersTests.java,v $
38 * Revision 1.5 2006/02/10 14:26:25 tomcopeland
39 * Huge reformatting checkin
40 *
41 * Revision 1.4 2006/02/10 14:15:20 tomcopeland
42 * Latest source from Pieter, everything compiles and all the tests pass with the exception of a few missing rules in basic-jsp.xml
43 *
44 * Revision 1.3 2003/11/20 16:53:10 tomcopeland
45 * Changing over license headers in the source code, cleaned up a test
46 *
47 * Revision 1.2 2003/10/01 14:55:55 tomcopeland
48 * Added unit tests for TextPad integration; thanks to Jeff Epstein
49 *
50 * Revision 1.1 2003/09/29 14:32:32 tomcopeland
51 * Committed regression test suites, thanks to Boris Gruschko
52 *
53 */