1 16 package org.apache.juddi.datastore.jdbc; 17 18 import java.sql.Connection ; 19 20 import junit.framework.Test; 21 import junit.framework.TestCase; 22 import junit.framework.TestSuite; 23 24 27 public class TestAll extends TestCase 28 { 29 public TestAll(String testName) 30 { 31 super(testName); 32 } 33 34 public static Test suite() 35 { 36 Connection conn = null; 37 TestSuite suite = new TestSuite(); 38 39 try 40 { 41 } 72 catch(Exception ex) 73 { 74 ex.printStackTrace(); 75 } 76 77 return suite; 78 } 79 80 public static void main(String args[]) 81 { 82 String [] testCaseName = { TestAll.class.getName() }; 83 junit.textui.TestRunner.main(testCaseName); 84 } 85 } | Popular Tags |