added test case to TestFileWriterNode.java 31/59831/6
authorSandeep J <sandeejh@in.ibm.com>
Thu, 9 Aug 2018 10:03:34 +0000 (15:33 +0530)
committerTakamune Cho <tc012c@att.com>
Fri, 17 Aug 2018 00:32:43 +0000 (00:32 +0000)
to increase code coverage

Issue-ID: APPC-1086
Change-Id: I4665f2da142c4f5aaf01af8275ae480542a84cec
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
appc-config/appc-config-generator/provider/src/test/java/org/onap/sdnc/config/generator/writer/TestFileWriterNode.java

index d166a18..0d5e7de 100644 (file)
@@ -6,6 +6,8 @@
  * ================================================================================
  * Copyright (C) 2017 Amdocs
  * =============================================================================
+ * Modfication Copyright (C) 2018 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
  */
 
 package org.onap.sdnc.config.generator.writer;
-
 import static org.junit.Assert.assertEquals;
 import java.util.HashMap;
 import java.util.Map;
 import org.junit.Test;
 import org.onap.ccsdk.sli.core.sli.SvcLogicContext;
 import org.onap.sdnc.config.generator.ConfigGeneratorConstant;
+import org.onap.ccsdk.sli.core.sli.SvcLogicException;
 
 public class TestFileWriterNode {
 
@@ -46,4 +49,12 @@ public class TestFileWriterNode {
         assertEquals(ctx.getAttribute("test." + ConfigGeneratorConstant.OUTPUT_PARAM_STATUS),
                 ConfigGeneratorConstant.OUTPUT_STATUS_SUCCESS);
     }
+    
+    @Test(expected=SvcLogicException.class)
+    public void testWriteFileForEmptyParams() throws Exception {
+        FileWriterNode FileWriterNode = new FileWriterNode();
+        Map<String, String> inParams = new HashMap<String, String>();
+        SvcLogicContext ctx = new SvcLogicContext();
+        FileWriterNode.writeFile(inParams, ctx);
+      }
 }