1 package xdoclet.modules.ojb.tests; 2 3 17 18 import junit.framework.Test; 19 import junit.framework.TestCase; 20 import junit.framework.TestSuite; 21 22 31 public class RunAllTests extends TestCase 32 { 33 34 public RunAllTests(String name) 35 { 36 super(name); 37 } 38 39 public static void main(String [] args) 40 { 41 junit.textui.TestRunner.run(suite()); 42 } 43 44 public static Test suite() 45 { 46 TestSuite suite = new TestSuite("XDoclet OJB module tests"); 47 156 157 return suite; 158 } 159 } 160 | Popular Tags |