1 16 17 package test.wsdl.multiref; 18 19 import junit.framework.TestCase; 20 21 22 24 public class MultiRefTestCase extends TestCase { 25 26 public MultiRefTestCase(String name) { 27 super(name); 28 } 29 30 public void doTest () throws Exception { 31 String [] args = {}; 32 test.wsdl.multiref.Main.main(args); 33 } 34 35 public void testMultiRefService () throws Exception { 36 try { 37 doTest(); 38 } 39 catch( Exception e ) { 40 e.printStackTrace(); 41 throw new Exception ("Fault returned from test: "+e); 42 } 43 } 44 } 45 46 47 | Popular Tags |