aboutsummaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/dcae/vestest
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/vestest
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/vestest')
-rw-r--r--src/test/java/org/onap/dcae/vestest/AnyNodeTest.java1
-rw-r--r--src/test/java/org/onap/dcae/vestest/TestConfigProcessor.java4
-rw-r--r--src/test/java/org/onap/dcae/vestest/TestVESLogger.java12
3 files changed, 9 insertions, 8 deletions
diff --git a/src/test/java/org/onap/dcae/vestest/AnyNodeTest.java b/src/test/java/org/onap/dcae/vestest/AnyNodeTest.java
index 9400e46d..52f81271 100644
--- a/src/test/java/org/onap/dcae/vestest/AnyNodeTest.java
+++ b/src/test/java/org/onap/dcae/vestest/AnyNodeTest.java
@@ -17,6 +17,7 @@
* limitations under the License.
* ============LICENSE_END=========================================================
*/
+
package org.onap.dcae.vestest;
import static org.assertj.core.api.Assertions.assertThat;
diff --git a/src/test/java/org/onap/dcae/vestest/TestConfigProcessor.java b/src/test/java/org/onap/dcae/vestest/TestConfigProcessor.java
index eaf59410..79ae9efb 100644
--- a/src/test/java/org/onap/dcae/vestest/TestConfigProcessor.java
+++ b/src/test/java/org/onap/dcae/vestest/TestConfigProcessor.java
@@ -22,16 +22,14 @@ package org.onap.dcae.vestest;
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertNotEquals;
-import com.google.gson.JsonParser;
import com.google.gson.JsonObject;
+import com.google.gson.JsonParser;
import java.io.FileReader;
import java.io.IOException;
import org.json.JSONObject;
import org.junit.Test;
-
import org.onap.dcae.commonFunction.ConfigProcessors;
-
public class TestConfigProcessor {
private JSONObject getFileAsJsonObject() {
diff --git a/src/test/java/org/onap/dcae/vestest/TestVESLogger.java b/src/test/java/org/onap/dcae/vestest/TestVESLogger.java
index 848f2b76..a1b3e7df 100644
--- a/src/test/java/org/onap/dcae/vestest/TestVESLogger.java
+++ b/src/test/java/org/onap/dcae/vestest/TestVESLogger.java
@@ -17,18 +17,20 @@
* limitations under the License.
* ============LICENSE_END=========================================================
*/
+
package org.onap.dcae.vestest;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertNotNull;
+import static org.junit.Assert.assertNotSame;
+import static org.onap.dcae.commonFunction.VESLogger.REQUEST_ID;
+
import com.att.nsa.logging.LoggingContext;
import com.att.nsa.logging.log4j.EcompFields;
+import java.util.UUID;
import org.junit.Test;
import org.onap.dcae.commonFunction.VESLogger;
-import java.util.UUID;
-
-import static org.junit.Assert.*;
-import static org.onap.dcae.commonFunction.VESLogger.REQUEST_ID;
-
public class TestVESLogger {
@Test