1 25 package org.objectweb.easybeans.tests.webservice.environment; 26 27 import java.net.URL ; 28 29 import org.objectweb.easybeans.tests.common.resources.ItfWSUtil; 30 import org.objectweb.easybeans.tests.common.resources.WSUtilCeltix; 31 import org.objectweb.easybeans.tests.common.ws.ejbref.gen.ItfChecker; 32 import org.testng.annotations.BeforeMethod; 33 import org.testng.annotations.Test; 34 35 43 public class TestEJBRef { 44 45 48 private ItfChecker instance; 49 50 53 private ItfWSUtil ws = new WSUtilCeltix(); 54 55 59 @BeforeMethod 60 public void startUp() throws Exception { 61 instance = ws.getPort(new URL ("http://localhost:8080/ow_easybeans/services/EjbRefService/"), 62 "http://objectweb.org/easybeans/tests/common/ws/ejbref/gen", 63 "SOAPService", ItfChecker.class, "SoapPort"); 64 } 65 66 70 @Test 71 public void test00() throws Exception { 72 instance.check(); 73 } 74 } 75 | Popular Tags |