Repository: cxf
Updated Branches:
  refs/heads/3.0.x-fixes 272b8533f -> 28e7c51cf


[CXF-6252] Reenabling all of JAXRSAsyncClientTest tests


Project: http://git-wip-us.apache.org/repos/asf/cxf/repo
Commit: http://git-wip-us.apache.org/repos/asf/cxf/commit/28e7c51c
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/28e7c51c
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/28e7c51c

Branch: refs/heads/3.0.x-fixes
Commit: 28e7c51cfa9e2548600151669f8896af20bce293
Parents: 272b853
Author: Sergey Beryozkin <[email protected]>
Authored: Tue Feb 10 22:21:49 2015 +0000
Committer: Sergey Beryozkin <[email protected]>
Committed: Tue Feb 10 22:26:26 2015 +0000

----------------------------------------------------------------------
 .../cxf/systest/jaxrs/JAXRSAsyncClientTest.java     | 16 ++++++++--------
 1 file changed, 8 insertions(+), 8 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/cxf/blob/28e7c51c/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSAsyncClientTest.java
----------------------------------------------------------------------
diff --git 
a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSAsyncClientTest.java
 
b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSAsyncClientTest.java
index b870f45..b46d054 100644
--- 
a/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSAsyncClientTest.java
+++ 
b/systests/jaxrs/src/test/java/org/apache/cxf/systest/jaxrs/JAXRSAsyncClientTest.java
@@ -69,7 +69,7 @@ public class JAXRSAsyncClientTest extends 
AbstractBusClientServerTestBase {
         }
     }
 
-    //@Test
+    @Test
     public void testRetrieveBookCustomMethodAsyncSync() throws Exception {
         String address = "http://localhost:"; + PORT + "/bookstore/retrieve";
         WebClient wc = WebClient.create(address);
@@ -80,7 +80,7 @@ public class JAXRSAsyncClientTest extends 
AbstractBusClientServerTestBase {
         wc.close();
     }
     
-    //@Test
+    @Test
     public void testDeleteWithBody() throws Exception {
         String address = "http://localhost:"; + PORT + "/bookstore/deletebody";
         WebClient wc = WebClient.create(address);
@@ -91,7 +91,7 @@ public class JAXRSAsyncClientTest extends 
AbstractBusClientServerTestBase {
         wc.close();
     }
     
-    //@Test
+    @Test
     public void testRetrieveBookCustomMethodAsync() throws Exception {
         String address = "http://localhost:"; + PORT + "/bookstore/retrieve";
         WebClient wc = WebClient.create(address);
@@ -102,7 +102,7 @@ public class JAXRSAsyncClientTest extends 
AbstractBusClientServerTestBase {
         wc.close();
     }
     
-    //@Test
+    @Test
     public void testGetBookAsyncResponse404() throws Exception {
         String address = "http://localhost:"; + PORT + 
"/bookstore/bookheaders/404";
         WebClient wc = createWebClient(address);
@@ -111,7 +111,7 @@ public class JAXRSAsyncClientTest extends 
AbstractBusClientServerTestBase {
         wc.close();
     }
     
-    //@Test
+    @Test
     public void testGetBookAsync404() throws Exception {
         String address = "http://localhost:"; + PORT + 
"/bookstore/bookheaders/404";
         WebClient wc = createWebClient(address);
@@ -144,7 +144,7 @@ public class JAXRSAsyncClientTest extends 
AbstractBusClientServerTestBase {
         }
     }
     
-    //@Test
+    @Test
     public void testPostBookProcessingException() throws Exception {
         String address = "http://localhost:"; + PORT + "/bookstore/";
         List<Object> providers = new ArrayList<Object>();
@@ -161,7 +161,7 @@ public class JAXRSAsyncClientTest extends 
AbstractBusClientServerTestBase {
         wc.close();
     }
     
-    //@Test
+    @Test
     public void testGetBookResponseProcessingException() throws Exception {
         String address = "http://localhost:"; + PORT + "/bookstore/books/123";
         List<Object> providers = new ArrayList<Object>();
@@ -178,7 +178,7 @@ public class JAXRSAsyncClientTest extends 
AbstractBusClientServerTestBase {
         wc.close();
     }
     
-    //@Test
+    @Test
     public void testGetBookAsync404Callback() throws Exception {
         String address = "http://localhost:"; + PORT + 
"/bookstore/bookheaders/404";
         WebClient wc = createWebClient(address);

Reply via email to