summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/dcae/vestest
diff options
context:
space:
mode:
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