added asserts statements in 5 JUnits
[appc.git] / appc-config / appc-flow-controller / provider / src / test / java / org / onap / appc / flow / executor / node / TestParsingNode.java
index 58ac458..372d20e 100644 (file)
@@ -28,6 +28,7 @@ import org.junit.Test;
 import org.onap.appc.flow.controller.node.JsonParsingNode;
 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
 import org.onap.ccsdk.sli.core.sli.SvcLogicException;
+import static org.junit.Assert.assertNotNull;
 
 public class TestParsingNode {
 
@@ -43,6 +44,7 @@ public class TestParsingNode {
             String parmName = (String) key;
             String parmValue = ctx.getAttribute(parmName);
         }
+        assertNotNull(ctx);
         
     }