added assert statements in 5 test files
[ccsdk/sli/adaptors.git] / aai-service / provider / src / test / java / org / onap / ccsdk / sli / adaptors / aai / PathCreationTest.java
index f9ec9f4..098414f 100755 (executable)
@@ -22,6 +22,7 @@
 package org.onap.ccsdk.sli.adaptors.aai;
 
 import static org.junit.Assert.fail;
+import static org.junit.Assert.assertNotNull;
 
 import java.io.File;
 import java.io.FileReader;
@@ -135,6 +136,8 @@ public class PathCreationTest {
             URL url = request.getRequestUrl("GET", null);
             url.getPath();
             LOG.info("Received response");
+            assertNotNull(nameValues);
+
         } catch(Exception exc) {
             LOG.info("Caught exception", exc);
         }
@@ -196,5 +199,6 @@ public class PathCreationTest {
             }
         }
         LOG.info(nameValues.toString());
+        assertNotNull(nameValues);
     }
 }