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 org.junit.runner.RunWith;
7   import org.junit.runners.Suite;
8   import org.junit.runners.Suite.SuiteClasses;
9   
10  
11  /**
12   * tests for the net.sourceforge.pmd.renderers package
13   *
14   * @author Boris Gruschko ( boris at gruschko.org )
15   * @version $Id: RenderersTests.java 5043 2007-02-09 01:38:14Z allancaplan $
16   */
17  @RunWith(Suite.class)
18  @SuiteClasses({CSVRendererTest.class, EmacsRendererTest.class, XMLRendererTest.class, TextPadRendererTest.class})
19  public class RenderersTests {
20  }
21  
22  
23  /*
24   * $Log$
25   * Revision 1.7  2007/02/09 01:38:02  allancaplan
26   * Moving to JUnit 4
27   *
28   * Revision 1.6  2006/10/13 23:49:38  allancaplan
29   * Improving JUnit tests
30   *
31   * 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
32   *
33   * Revision 1.5  2006/02/10 14:26:25  tomcopeland
34   * Huge reformatting checkin
35   *
36   * Revision 1.4  2006/02/10 14:15:20  tomcopeland
37   * Latest source from Pieter, everything compiles and all the tests pass with the exception of a few missing rules in basic-jsp.xml
38   *
39   * Revision 1.3  2003/11/20 16:53:10  tomcopeland
40   * Changing over license headers in the source code, cleaned up a test
41   *
42   * Revision 1.2  2003/10/01 14:55:55  tomcopeland
43   * Added unit tests for TextPad integration; thanks to Jeff Epstein
44   *
45   * Revision 1.1  2003/09/29 14:32:32  tomcopeland
46   * Committed regression test suites, thanks to Boris Gruschko
47   *
48   */