01: /**
02: * BSD-style license; for more info see http://pmd.sourceforge.net/license.html
03: */package test.net.sourceforge.pmd.renderers;
04:
05: import org.junit.runner.RunWith;
06: import org.junit.runners.Suite;
07: import org.junit.runners.Suite.SuiteClasses;
08:
09: /**
10: * tests for the net.sourceforge.pmd.renderers package
11: *
12: * @author Boris Gruschko ( boris at gruschko.org )
13: * @version $Id: RenderersTests.java 5043 2007-02-09 01:38:14Z allancaplan $
14: */
15: @RunWith(Suite.class)
16: @SuiteClasses({CSVRendererTest.class,EmacsRendererTest.class,XMLRendererTest.class,TextPadRendererTest.class})
17: public class RenderersTests {
18: }
19:
20: /*
21: * $Log$
22: * Revision 1.7 2007/02/09 01:38:02 allancaplan
23: * Moving to JUnit 4
24: *
25: * Revision 1.6 2006/10/13 23:49:38 allancaplan
26: * Improving JUnit tests
27: *
28: * I went over the output, it looks correct. For many, having a test will help down the road to throw a flag if anything changes
29: *
30: * Revision 1.5 2006/02/10 14:26:25 tomcopeland
31: * Huge reformatting checkin
32: *
33: * Revision 1.4 2006/02/10 14:15:20 tomcopeland
34: * Latest source from Pieter, everything compiles and all the tests pass with the exception of a few missing rules in basic-jsp.xml
35: *
36: * Revision 1.3 2003/11/20 16:53:10 tomcopeland
37: * Changing over license headers in the source code, cleaned up a test
38: *
39: * Revision 1.2 2003/10/01 14:55:55 tomcopeland
40: * Added unit tests for TextPad integration; thanks to Jeff Epstein
41: *
42: * Revision 1.1 2003/09/29 14:32:32 tomcopeland
43: * Committed regression test suites, thanks to Boris Gruschko
44: *
45: */
|