added test case to JsonInsertTest.java 84/89984/1
authorSandeep J <sandeejh@in.ibm.com>
Mon, 17 Jun 2019 07:58:21 +0000 (13:28 +0530)
committerSandeep J <sandeejh@in.ibm.com>
Mon, 17 Jun 2019 07:58:55 +0000 (13:28 +0530)
to increase code coverage

Issue-ID: MUSIC-412
Change-Id: I83d1d2f5d70ff5b73119f5c4e0d27e512de0f261
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
src/test/java/org/onap/music/unittests/jsonobjects/JsonInsertTest.java

index 535cdd8..4992af7 100644 (file)
@@ -4,6 +4,8 @@
  * ===================================================================
  *  Copyright (c) 2017 AT&T Intellectual Property
  * ===================================================================
+ *  Modifications Copyright (c) 2019 IBM.
+ * ===================================================================
  *  Licensed under the Apache License, Version 2.0 (the "License");
  *  you may not use this file except in compliance with the License.
  *  You may obtain a copy of the License at
@@ -22,9 +24,9 @@
 
 package org.onap.music.unittests.jsonobjects;
 
-import static org.junit.Assert.*;
+import static org.junit.Assert.assertArrayEquals;
+import static org.junit.Assert.assertEquals;
 
-import java.io.Serializable;
 import java.util.HashMap;
 import java.util.Map;
 
@@ -98,6 +100,12 @@ public class JsonInsertTest {
         assertArrayEquals(ji1,test1);
     }
 
-
+    @Test
+    public void testObjectMap()
+    {
+        Map<String, byte[]> map = new HashMap<>();
+        ji.setObjectMap(map);
+        assertEquals(map, ji.getObjectMap());
+    }
 
 }