cxf git commit: [CXF-6252] Reenabling all of JAXRSAsyncClientTest tests

2015-02-10 Thread sergeyb
Repository: cxf
Updated Branches:
  refs/heads/master 0cb64ee2b - 6d7ab22d5


[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/6d7ab22d
Tree: http://git-wip-us.apache.org/repos/asf/cxf/tree/6d7ab22d
Diff: http://git-wip-us.apache.org/repos/asf/cxf/diff/6d7ab22d

Branch: refs/heads/master
Commit: 6d7ab22d5adcd15bfa3a086345a0b5851fe3e2b2
Parents: 0cb64ee
Author: Sergey Beryozkin sberyoz...@talend.com
Authored: Tue Feb 10 22:21:49 2015 +
Committer: Sergey Beryozkin sberyoz...@talend.com
Committed: Tue Feb 10 22:21:49 2015 +

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


http://git-wip-us.apache.org/repos/asf/cxf/blob/6d7ab22d/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 40d38ce..fe9a81b 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
@@ -72,7 +72,7 @@ public class JAXRSAsyncClientTest extends 
AbstractBusClientServerTestBase {
 Thread.sleep(Long.valueOf(property));
 }
 }
-//@Test
+@Test
 public void testRetrieveBookCustomMethodAsyncSync() throws Exception {
 String address = http://localhost:; + PORT + /bookstore/retrieve;
 WebClient wc = WebClient.create(address);
@@ -83,7 +83,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);
@@ -94,7 +94,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);
@@ -105,7 +105,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);
@@ -114,7 +114,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);
@@ -147,7 +147,7 @@ public class JAXRSAsyncClientTest extends 
AbstractBusClientServerTestBase {
 }
 }
 
-//@Test
+@Test
 public void testPostBookProcessingException() throws Exception {
 String address = http://localhost:; + PORT + /bookstore/;
 ListObject providers = new ArrayListObject();
@@ -164,7 +164,7 @@ public class JAXRSAsyncClientTest extends 
AbstractBusClientServerTestBase {
 wc.close();
 }
 
-//@Test
+@Test
 public void testGetBookResponseProcessingException() throws Exception {
 String address = http://localhost:; + PORT + /bookstore/books/123;
 ListObject providers = new ArrayListObject();
@@ -181,7 +181,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);



cxf git commit: [CXF-6252] Reenabling all of JAXRSAsyncClientTest tests

2015-02-10 Thread sergeyb
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 sberyoz...@talend.com
Authored: Tue Feb 10 22:21:49 2015 +
Committer: Sergey Beryozkin sberyoz...@talend.com
Committed: Tue Feb 10 22:26:26 2015 +

--
 .../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/;
 ListObject providers = new ArrayListObject();
@@ -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;
 ListObject providers = new ArrayListObject();
@@ -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);