X-Git-Url: https://gerrit.onap.org/r/gitweb?a=blobdiff_plain;f=wfenginemgrservice%2Fsrc%2Ftest%2Fjava%2Forg%2Fonap%2Fworkflow%2Fcommon%2FRestClientTest.java;h=418cff6f559a1a45a3a9af378505fd790d26f6c9;hb=687a149af6ff59fba9e614e060a598392b68db6b;hp=27c3ddc1efe878b0e37f86f014977384c68403cf;hpb=ca57c4bc2ce48c52f10bf6ef816492cf044430e0;p=vfc%2Fnfvo%2Fwfengine.git diff --git a/wfenginemgrservice/src/test/java/org/onap/workflow/common/RestClientTest.java b/wfenginemgrservice/src/test/java/org/onap/workflow/common/RestClientTest.java index 27c3ddc..418cff6 100644 --- a/wfenginemgrservice/src/test/java/org/onap/workflow/common/RestClientTest.java +++ b/wfenginemgrservice/src/test/java/org/onap/workflow/common/RestClientTest.java @@ -24,13 +24,10 @@ import org.apache.http.client.methods.CloseableHttpResponse; import org.apache.http.impl.client.CloseableHttpClient; import org.apache.http.impl.client.HttpClients; import org.junit.After; -import org.junit.AfterClass; import org.junit.Before; -import org.junit.BeforeClass; import org.junit.Test; import org.junit.runner.RunWith; import org.mockito.Mockito; -import org.onap.workflow.common.RestClient; import org.onap.workflow.common.RestClient.HttpMethod; import org.onap.workflow.externalservice.entity.activitientitiy.ActivitiStartProcessRequest; import org.powermock.api.mockito.PowerMockito; @@ -52,6 +49,7 @@ public class RestClientTest { @After public void tearDown() throws Exception {} + @SuppressWarnings("static-access") @Test public final void testExecuteHttp() throws Exception { HttpEntity httpEntity = mock(HttpEntity.class); @@ -67,6 +65,7 @@ public class RestClientTest { restClient.executeHttp(HttpMethod.POST, "127.0.0.1", 80, "test", httpEntity); } + @SuppressWarnings("static-access") @Test public final void testExecuteHttpDeleteDeploy() throws Exception { HttpEntity httpEntity = mock(HttpEntity.class); @@ -80,6 +79,7 @@ public class RestClientTest { restClient.executeHttpDeleteDeploy(HttpMethod.DELETE, "127.0.0.1", 80, "test"); } + @SuppressWarnings("static-access") @Test public final void testExecuteHttpStartIntance() throws Exception {