1 16 17 package org.apache.commons.jocl; 18 19 import junit.framework.*; 20 21 24 public class TestAll extends TestCase { 25 public TestAll(String testName) { 26 super(testName); 27 } 28 29 public static Test suite() { 30 TestSuite suite = new TestSuite(); 31 suite.addTest(TestJOCLContentHandler.suite()); 32 return suite; 33 } 34 35 public static void main(String args[]) { 36 String [] testCaseName = { TestAll.class.getName() }; 37 junit.textui.TestRunner.main(testCaseName); 38 } 39 } 40 | Popular Tags |