summaryrefslogtreecommitdiffstats
path: root/wfenginemgrservice/src/test/java/org/onap/workflow/resources/RestClientTest.java
diff options
context:
space:
mode:
authorZhaoxing <meng.zhaoxing1@zte.com.cn>2017-09-28 17:04:44 +0800
committerFu Jinhua <fu.jinhua@zte.com.cn>2017-09-28 09:16:41 +0000
commit687a149af6ff59fba9e614e060a598392b68db6b (patch)
tree018b99dc2c64ec32e53d6968fa679369a399ce82 /wfenginemgrservice/src/test/java/org/onap/workflow/resources/RestClientTest.java
parentca57c4bc2ce48c52f10bf6ef816492cf044430e0 (diff)
Add unit test for vfc-nfvo-wfengine
Change-Id: I75acdc20d9aa6ccb650b80d93c675bab7c27dca9 Issue-id: VFC-454 Signed-off-by: Zhaoxing <meng.zhaoxing1@zte.com.cn>
Diffstat (limited to 'wfenginemgrservice/src/test/java/org/onap/workflow/resources/RestClientTest.java')
-rw-r--r--wfenginemgrservice/src/test/java/org/onap/workflow/resources/RestClientTest.java4
1 files changed, 3 insertions, 1 deletions
diff --git a/wfenginemgrservice/src/test/java/org/onap/workflow/resources/RestClientTest.java b/wfenginemgrservice/src/test/java/org/onap/workflow/resources/RestClientTest.java
index 81d63d5..40f5793 100644
--- a/wfenginemgrservice/src/test/java/org/onap/workflow/resources/RestClientTest.java
+++ b/wfenginemgrservice/src/test/java/org/onap/workflow/resources/RestClientTest.java
@@ -13,7 +13,6 @@
* See the License for the specific language governing permissions and
* limitations under the License.
*/
-
package org.onap.workflow.resources;
import static org.powermock.api.mockito.PowerMockito.mock;
@@ -60,6 +59,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);
@@ -73,6 +73,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);
@@ -86,6 +87,7 @@ public class RestClientTest {
restClient.executeHttpDeleteDeploy(HttpMethod.DELETE, "127.0.0.1", 80, "test");
}
+ @SuppressWarnings("static-access")
@Test
public final void testExecuteHttpStartIntance() throws Exception {