[jbossws-commits] JBossWS SVN: r19274 - stack/cxf/branches/arquillian/modules/testsuite/shared-tests/src/test/java/org/jboss/test/ws/jaxws/samples/endpoint.

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Fri Dec 26 23:10:26 EST 2014


Author: rsearls
Date: 2014-12-26 23:10:26 -0500 (Fri, 26 Dec 2014)
New Revision: 19274

Modified:
   stack/cxf/branches/arquillian/modules/testsuite/shared-tests/src/test/java/org/jboss/test/ws/jaxws/samples/endpoint/EndpointTestCase.java
Log:
arquillian migration endpoint test

Modified: stack/cxf/branches/arquillian/modules/testsuite/shared-tests/src/test/java/org/jboss/test/ws/jaxws/samples/endpoint/EndpointTestCase.java
===================================================================
--- stack/cxf/branches/arquillian/modules/testsuite/shared-tests/src/test/java/org/jboss/test/ws/jaxws/samples/endpoint/EndpointTestCase.java	2014-12-27 04:00:55 UTC (rev 19273)
+++ stack/cxf/branches/arquillian/modules/testsuite/shared-tests/src/test/java/org/jboss/test/ws/jaxws/samples/endpoint/EndpointTestCase.java	2014-12-27 04:10:26 UTC (rev 19274)
@@ -29,16 +29,23 @@
 import javax.xml.ws.soap.SOAPBinding;
 
 import org.jboss.wsf.test.JBossWSTest;
+import org.jboss.arquillian.junit.Arquillian;
+import org.junit.Test;
+import org.junit.runner.RunWith;
+import org.jboss.arquillian.container.test.api.RunAsClient;
 
 /**
  * Tests JAXWS dynamic endpoint deployment in an JSE environment.
  *
  * @author <a href="mailto:ropalka at redhat.com">Richard Opalka</a>
  */
+ at RunWith(Arquillian.class)
 public class EndpointTestCase extends JBossWSTest
 {
    private static final int port = 8878;
 
+   @Test
+   @RunAsClient
    public void test() throws Exception
    {
       String publishURL1 = "http://" + getServerHost() + ":" + port + "/jaxws-endpoint1";



More information about the jbossws-commits mailing list