From: Sandeep J Date: Fri, 3 Aug 2018 11:44:35 +0000 (+0530) Subject: added test case to DefaultConfigurationTest.java X-Git-Tag: 1.4.0~124 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=171b07e5ed1b99dbe130b55726fc9ec65d4432ea;p=appc.git added test case to DefaultConfigurationTest.java to increase code coverage Issue-ID: APPC-1086 Change-Id: I4b0f1f352fa8b90810b7efc145e83edebff913da Signed-off-by: Sandeep J --- diff --git a/appc-common/src/test/java/org/onap/appc/configuration/DefaultConfigurationTest.java b/appc-common/src/test/java/org/onap/appc/configuration/DefaultConfigurationTest.java index f43d81a64..aed414192 100644 --- a/appc-common/src/test/java/org/onap/appc/configuration/DefaultConfigurationTest.java +++ b/appc-common/src/test/java/org/onap/appc/configuration/DefaultConfigurationTest.java @@ -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";