added test to cover catch portion of exception 47/61247/2
authorSandeep J <sandeejh@in.ibm.com>
Mon, 20 Aug 2018 10:13:34 +0000 (15:43 +0530)
committerTakamune Cho <tc012c@att.com>
Mon, 20 Aug 2018 23:41:10 +0000 (23:41 +0000)
to increase code coverage

Issue-ID: APPC-1086
Change-Id: I91dcb8497ad2d5fe88238f1979f413584803d000
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
appc-config/appc-config-params/provider/src/test/java/org/onap/sdnc/config/params/parser/TestPropertyDefinitionNode.java

index 2fdc90a..b4e9bc5 100644 (file)
@@ -6,7 +6,7 @@
  * ================================================================================
  * Copyright (C) 2017 Amdocs
  * =============================================================================
- * Modification Copyright (C) 2018 IBM
+ * Modifications 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.
@@ -171,6 +171,14 @@ public class TestPropertyDefinitionNode {
 
     }
 
+    @Test(expected = SvcLogicException.class)
+    public void testMergeJsonDataCatchPortion() throws Exception {
+        Map<String, String> inParams = new HashMap<String, String>();
+        inParams.put(ParamsHandlerConstant.INPUT_PARAM_RESPONSE_PRIFIX, "test");
+        SvcLogicContext ctx = new SvcLogicContext();
+        propertyDefinitionNode.mergeJsonData(inParams, ctx);
+    }
+
     @Test
     public void testArtificatTransformer() throws Exception {
         ArtificatTransformer transformer = new ArtificatTransformer();