diff options
author | Sandeep J <sandeejh@in.ibm.com> | 2018-08-09 15:33:34 +0530 |
---|---|---|
committer | Takamune Cho <tc012c@att.com> | 2018-08-17 00:32:43 +0000 |
commit | 3e0dee4f5860f299105567071a802733bab531a5 (patch) | |
tree | 25f97ce4de823b894b9fbac731a83e3ddb1f7fd6 /appc-config | |
parent | 281b9a5f548087749ca89da62086f6ff064c5eff (diff) |
added test case to TestFileWriterNode.java
to increase code coverage
Issue-ID: APPC-1086
Change-Id: I4665f2da142c4f5aaf01af8275ae480542a84cec
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
Diffstat (limited to 'appc-config')
-rw-r--r-- | appc-config/appc-config-generator/provider/src/test/java/org/onap/sdnc/config/generator/writer/TestFileWriterNode.java | 13 |
1 files changed, 12 insertions, 1 deletions
diff --git a/appc-config/appc-config-generator/provider/src/test/java/org/onap/sdnc/config/generator/writer/TestFileWriterNode.java b/appc-config/appc-config-generator/provider/src/test/java/org/onap/sdnc/config/generator/writer/TestFileWriterNode.java index d166a189a..0d5e7de3d 100644 --- a/appc-config/appc-config-generator/provider/src/test/java/org/onap/sdnc/config/generator/writer/TestFileWriterNode.java +++ b/appc-config/appc-config-generator/provider/src/test/java/org/onap/sdnc/config/generator/writer/TestFileWriterNode.java @@ -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 @@ -22,13 +24,14 @@ */ 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); + } } |