summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/dcae/WiremockBasedTest.java
diff options
context:
space:
mode:
authorVijay VK <vv770d@att.com>2018-09-10 19:04:05 +0100
committerVENKATESH KUMAR <vv770d@att.com>2018-09-11 11:35:17 -0400
commit84b25b7ab2019a558fad92e21c4cc44c242e4461 (patch)
tree301c79fe2edf786e2c6137149db50c99476f2a7b /src/test/java/org/onap/dcae/WiremockBasedTest.java
parent4026d98bc9802e41146ff6ef727d349c7ac1e89e (diff)
Fix build warnings & CLM scan issue3.0.0-ONAP1.3.1
Change-Id: I43629917f2d7bafb15258bdbba1cd45478595edb Signed-off-by: VENKATESH KUMAR <vv770d@att.com> Issue-ID: DCAEGEN2-603, DCAEGEN2-767 Signed-off-by: VENKATESH KUMAR <vv770d@att.com>
Diffstat (limited to 'src/test/java/org/onap/dcae/WiremockBasedTest.java')
-rw-r--r--src/test/java/org/onap/dcae/WiremockBasedTest.java12
1 files changed, 8 insertions, 4 deletions
diff --git a/src/test/java/org/onap/dcae/WiremockBasedTest.java b/src/test/java/org/onap/dcae/WiremockBasedTest.java
index 58626340..3b4bdc39 100644
--- a/src/test/java/org/onap/dcae/WiremockBasedTest.java
+++ b/src/test/java/org/onap/dcae/WiremockBasedTest.java
@@ -3,6 +3,7 @@
* org.onap.dcaegen2.collectors.ves
* ================================================================================
* Copyright (C) 2018 Nokia. All rights reserved.
+ * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.
* ================================================================================
* Licensed under the Apache License, Version 2.0 (the "License");
* you may not use this file except in compliance with the License.
@@ -20,14 +21,17 @@
package org.onap.dcae;
+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.stubFor;
+import static com.github.tomakehurst.wiremock.client.WireMock.urlEqualTo;
+import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.wireMockConfig;
+import static io.vavr.API.Map;
+
import com.github.tomakehurst.wiremock.junit.WireMockRule;
import io.vavr.collection.Map;
import org.junit.Rule;
-import static com.github.tomakehurst.wiremock.client.WireMock.*;
-import static com.github.tomakehurst.wiremock.core.WireMockConfiguration.wireMockConfig;
-import static io.vavr.API.Map;
-
/**
* @author Pawel Szalapski (pawel.szalapski@nokia.com)
*/