summaryrefslogtreecommitdiffstats
path: root/src/test/java/org/onap/dcae/common/RestConfContextTest.java
diff options
context:
space:
mode:
Diffstat (limited to 'src/test/java/org/onap/dcae/common/RestConfContextTest.java')
-rw-r--r--src/test/java/org/onap/dcae/common/RestConfContextTest.java10
1 files changed, 7 insertions, 3 deletions
diff --git a/src/test/java/org/onap/dcae/common/RestConfContextTest.java b/src/test/java/org/onap/dcae/common/RestConfContextTest.java
index 00b07f8..c8bfe48 100644
--- a/src/test/java/org/onap/dcae/common/RestConfContextTest.java
+++ b/src/test/java/org/onap/dcae/common/RestConfContextTest.java
@@ -20,10 +20,13 @@
package org.onap.dcae.common;
+import static org.junit.Assert.assertEquals;
+import static org.junit.Assert.assertFalse;
+import static org.junit.Assert.assertTrue;
+
import org.junit.Test;
-import org.onap.dcae.common.RestConfContext;
-import static org.junit.Assert.*;
+
public class RestConfContextTest {
@@ -47,6 +50,7 @@ public class RestConfContextTest {
RestConfContext restConfContext = new RestConfContext();
restConfContext.setAttribute(key,value);
restConfContext.setAttribute(key1,value1);
- assertTrue(restConfContext.getAttributeKeySet().contains(key) && restConfContext.getAttributeKeySet().contains(key1));
+ assertTrue(restConfContext.getAttributeKeySet().contains(key)
+ && restConfContext.getAttributeKeySet().contains(key1));
}
} \ No newline at end of file