add EntitiesTest to LangTestSuite

git-svn-id: https://svn.apache.org/repos/asf/jakarta/commons/proper/lang/trunk@137334 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Alex Chaffee 2003-05-24 04:38:05 +00:00
parent 5203441765
commit bf37701b41
2 changed files with 16 additions and 2 deletions

View File

@ -65,10 +65,23 @@ import junit.textui.TestRunner;
* *
* @author of original StringUtilsTest.testEscape = ? * @author of original StringUtilsTest.testEscape = ?
* @author <a href="mailto:alex@purpletech.com">Alexander Day Chaffee</a> * @author <a href="mailto:alex@purpletech.com">Alexander Day Chaffee</a>
* @version $Id: EntitiesTest.java,v 1.1 2003/05/24 04:35:07 alex Exp $ * @version $Id: EntitiesTest.java,v 1.2 2003/05/24 04:38:05 alex Exp $
*/ */
public class EntitiesTest extends TestCase public class EntitiesTest extends TestCase
{ {
public EntitiesTest(String name) {
super(name);
}
public static void main(String[] args) {
TestRunner.run(suite());
}
public static Test suite() {
TestSuite suite = new TestSuite(EntitiesTest.class);
suite.setName("EntitiesTest Tests");
return suite;
}
Entities entities; Entities entities;

View File

@ -64,7 +64,7 @@ import junit.textui.TestRunner;
* @author Stephen Colebourne * @author Stephen Colebourne
* @author <a href="mailto:ridesmet@users.sourceforge.net">Ringo De Smet</a> * @author <a href="mailto:ridesmet@users.sourceforge.net">Ringo De Smet</a>
* @author Matthew Hawthorne * @author Matthew Hawthorne
* @version $Id: LangTestSuite.java,v 1.16 2003/05/15 04:05:11 bayard Exp $ * @version $Id: LangTestSuite.java,v 1.17 2003/05/24 04:38:05 alex Exp $
*/ */
public class LangTestSuite extends TestCase { public class LangTestSuite extends TestCase {
@ -92,6 +92,7 @@ public class LangTestSuite extends TestCase {
suite.addTest(BooleanUtilsTest.suite()); suite.addTest(BooleanUtilsTest.suite());
suite.addTest(CharSetUtilsTest.suite()); suite.addTest(CharSetUtilsTest.suite());
suite.addTest(ClassUtilsTest.suite()); suite.addTest(ClassUtilsTest.suite());
suite.addTest(EntitiesTest.suite());
suite.addTest(IllegalClassExceptionTest.suite()); suite.addTest(IllegalClassExceptionTest.suite());
suite.addTest(IncompleteArgumentExceptionTest.suite()); suite.addTest(IncompleteArgumentExceptionTest.suite());
suite.addTest(NotImplementedExceptionTest.suite()); suite.addTest(NotImplementedExceptionTest.suite());