View Javadoc
1 /*** 2 * BSD-style license; for more info see http://pmd.sourceforge.net/license.html 3 */ 4 package test.net.sourceforge.pmd.util; 5 6 import junit.framework.Test; 7 import junit.framework.TestSuite; 8 9 10 /*** 11 * tests for the net.sourceforge.pmd.util package 12 * 13 * @author Boris Gruschko ( boris at gruschko.org ) 14 * @version $Id: UtilTests.java,v 1.2 2003/11/21 21:22:17 tomcopeland Exp $ 15 */ 16 public class UtilTests 17 { 18 /*** 19 * test suite 20 * 21 * @return test suite 22 */ 23 public static Test suite( ) 24 { 25 TestSuite suite = new TestSuite( "Test for test.net.sourceforge.pmd.util" ); 26 27 //$JUnit-BEGIN$ 28 suite.addTestSuite( ApplierTest.class ); 29 suite.addTestSuite( StringUtilTest.class ); 30 31 //$JUnit-END$ 32 return suite; 33 } 34 } 35 36 37 /* 38 * $Log: UtilTests.java,v $ 39 * Revision 1.2 2003/11/21 21:22:17 tomcopeland 40 * Continuing to clean up license headers 41 * 42 * Revision 1.1 2003/09/29 14:32:33 tomcopeland 43 * Committed regression test suites, thanks to Boris Gruschko 44 * 45 */

This page was automatically generated by Maven