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

jbossws-commits at lists.jboss.org jbossws-commits at lists.jboss.org
Mon Jan 19 02:03:46 EST 2015


Author: jim.ma
Date: 2015-01-19 02:03:46 -0500 (Mon, 19 Jan 2015)
New Revision: 19385

Modified:
   stack/cxf/branches/arquillian/modules/testsuite/shared-tests/src/test/java/org/jboss/test/ws/jaxws/jbws3552/JBWS3552TestCase.java
Log:
Use @Ignore to exclude test

Modified: stack/cxf/branches/arquillian/modules/testsuite/shared-tests/src/test/java/org/jboss/test/ws/jaxws/jbws3552/JBWS3552TestCase.java
===================================================================
--- stack/cxf/branches/arquillian/modules/testsuite/shared-tests/src/test/java/org/jboss/test/ws/jaxws/jbws3552/JBWS3552TestCase.java	2015-01-19 06:54:04 UTC (rev 19384)
+++ stack/cxf/branches/arquillian/modules/testsuite/shared-tests/src/test/java/org/jboss/test/ws/jaxws/jbws3552/JBWS3552TestCase.java	2015-01-19 07:03:46 UTC (rev 19385)
@@ -35,6 +35,7 @@
 import org.jboss.shrinkwrap.api.ShrinkWrap;
 import org.jboss.shrinkwrap.api.spec.WebArchive;
 import org.jboss.wsf.test.JBossWSTest;
+import org.junit.Ignore;
 import org.junit.Test;
 import org.junit.runner.RunWith;
 
@@ -143,12 +144,9 @@
 
    @Test
    @RunAsClient
+   @Ignore(value="FIXME: [CXF-4600] Exception inheritance not working over SOAP protocol")
     public void testExceptionCA() throws Exception {
-        if (true) {
-            System.out.println("FIXME: [CXF-4600] Exception inheritance not working over SOAP protocol");
-            return;
-        }
-        EndpointIface endpoint = getProxy();//FIXME [CXF-4600] Exception inheritance not working over SOAP protocol
+        EndpointIface endpoint = getProxy();
         try {
             endpoint.throwExceptionCA();
             fail("Expected exception not thrown");
@@ -171,12 +169,9 @@
 
    @Test
    @RunAsClient
+   @Ignore("FIXME: [CXF-4600] Exception inheritance not working over SOAP protocol") 
     public void testExceptionFA() throws Exception {
-        if (true) {
-            System.out.println("FIXME: [CXF-4600] Exception inheritance not working over SOAP protocol");
-            return;
-        }
-        EndpointIface endpoint = getProxy();//FIXME [CXF-4600] Exception inheritance not working over SOAP protocol
+        EndpointIface endpoint = getProxy();
         try {
             endpoint.throwExceptionFA();
             fail("Expected exception not thrown");
@@ -199,12 +194,9 @@
 
    @Test
    @RunAsClient
+   @Ignore("FIXME: [CXF-4600] Exception inheritance not working over SOAP protocol") 
     public void testExceptionGA() throws Exception {
-        if (true) {
-            System.out.println("FIXME: [CXF-4600] Exception inheritance not working over SOAP protocol");
-            return;
-        }
-        EndpointIface endpoint = getProxy();//FIXME [CXF-4600] Exception inheritance not working over SOAP protocol
+        EndpointIface endpoint = getProxy();        
         try {
             endpoint.throwExceptionGA();
             fail("Expected exception not thrown");
@@ -227,12 +219,9 @@
 
    @Test
    @RunAsClient
+   @Ignore("FIXME: [CXF-4600] Exception inheritance not working over SOAP protocol")
     public void testExceptionMA() throws Exception {
-        if (true) {
-            System.out.println("FIXME: [CXF-4600] Exception inheritance not working over SOAP protocol");
-            return;
-        }
-        EndpointIface endpoint = getProxy();//FIXME [CXF-4600] Exception inheritance not working over SOAP protocol
+        EndpointIface endpoint = getProxy();        
         try {
             endpoint.throwExceptionMA();
             fail("Expected exception not thrown");



More information about the jbossws-commits mailing list