This is an automated email from the ASF dual-hosted git repository. reta pushed a commit to branch 3.3.x-fixes in repository https://gitbox.apache.org/repos/asf/cxf.git
commit 0ef034cf49a0b802c9b1921c13abe97a0c1f3aa0 Author: Andy McCright <[email protected]> AuthorDate: Wed Jun 2 08:55:19 2021 -0500 Code review comments Signed-off-by: Andy McCright <[email protected]> --- systests/microprofile/client/nocdi/pom.xml | 8 +++++++- .../cxf/systest/microprofile/rest/client/AsyncMethodTest.java | 7 ++++--- 2 files changed, 11 insertions(+), 4 deletions(-) diff --git a/systests/microprofile/client/nocdi/pom.xml b/systests/microprofile/client/nocdi/pom.xml index 54358e4..8044259 100644 --- a/systests/microprofile/client/nocdi/pom.xml +++ b/systests/microprofile/client/nocdi/pom.xml @@ -26,7 +26,7 @@ </parent> <modelVersion>4.0.0</modelVersion> <groupId>org.apache.cxf.systests</groupId> - <artifactId>cxf-systests-microprofile-async</artifactId> + <artifactId>cxf-systests-microprofile-nocdi</artifactId> <name>Apache CXF MicroProfile No-CDI/Config Sys Tests</name> <description>Apache CXF System Tests - MicroProfile Rest Client No-CDI/Config Tests</description> <url>https://cxf.apache.org</url> @@ -65,6 +65,12 @@ <scope>test</scope> </dependency> <dependency> + <groupId>javax.json.bind</groupId> + <artifactId>javax.json.bind-api</artifactId> + <version>${cxf.json.bind.version}</version> + <scope>test</scope> + </dependency> + <dependency> <groupId>javax.json</groupId> <artifactId>javax.json-api</artifactId> <version>${cxf.json.api.version}</version> diff --git a/systests/microprofile/client/nocdi/src/test/java/org/apache/cxf/systest/microprofile/rest/client/AsyncMethodTest.java b/systests/microprofile/client/nocdi/src/test/java/org/apache/cxf/systest/microprofile/rest/client/AsyncMethodTest.java index 601291c..3ed9c51 100644 --- a/systests/microprofile/client/nocdi/src/test/java/org/apache/cxf/systest/microprofile/rest/client/AsyncMethodTest.java +++ b/systests/microprofile/client/nocdi/src/test/java/org/apache/cxf/systest/microprofile/rest/client/AsyncMethodTest.java @@ -51,14 +51,15 @@ import org.eclipse.microprofile.rest.client.tck.providers.TestWriterInterceptor; import org.junit.Rule; import org.junit.Test; -//CHECKSTYLE:OFF -import static com.github.tomakehurst.wiremock.client.WireMock.*; +import static com.github.tomakehurst.wiremock.client.WireMock.aResponse; +import static com.github.tomakehurst.wiremock.client.WireMock.get; +import static com.github.tomakehurst.wiremock.client.WireMock.put; +import static com.github.tomakehurst.wiremock.client.WireMock.urlEqualTo; import static org.hamcrest.CoreMatchers.equalTo; import static org.hamcrest.CoreMatchers.instanceOf; import static org.junit.Assert.assertEquals; import static org.junit.Assert.assertThat; import static org.junit.Assert.fail; -//CHECKSTYLE:ON public class AsyncMethodTest {
