added test case to DefaultConfigurationTest.java 27/58927/2
authorSandeep J <sandeejh@in.ibm.com>
Fri, 3 Aug 2018 11:44:35 +0000 (17:14 +0530)
committerTakamune Cho <tc012c@att.com>
Mon, 6 Aug 2018 23:39:45 +0000 (23:39 +0000)
to increase code coverage

Issue-ID: APPC-1086
Change-Id: I4b0f1f352fa8b90810b7efc145e83edebff913da
Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
appc-common/src/test/java/org/onap/appc/configuration/DefaultConfigurationTest.java

index f43d81a..aed4141 100644 (file)
@@ -6,6 +6,8 @@
  * ================================================================================
  * Copyright (C) 2017 Amdocs
  * =============================================================================
+ * Modification 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
@@ -103,7 +105,16 @@ public class DefaultConfigurationTest {
         defaultConfiguration.setProperty(booleanKey, "abc");
         Assert.assertFalse(defaultConfiguration.getBooleanProperty(booleanKey));
     }
-
+    
+    @Test
+    public void testSetPropAndGetBooleanPropertyForEncryptedValue()
+    {
+        String booleanKey = "booleanKey";
+        defaultConfiguration.setProperty(booleanKey, "enc:true");
+        Assert.assertFalse(defaultConfiguration.getBooleanProperty(booleanKey));
+    }
+    
+   
     @Test
     public void testSetPropAndGetBooleanPropertyWithDefaultValue() throws Exception {
         String booleanKey = "booleanKey";