aboutsummaryrefslogtreecommitdiffstats
path: root/appc-config
diff options
context:
space:
mode:
authorSandeep J <sandeejh@in.ibm.com>2019-01-17 16:25:05 +0530
committerTakamune Cho <takamune.cho@att.com>2019-01-17 21:59:34 +0000
commit8230f5424945bdfcb65a7d3df2c2e6b06ca80ef7 (patch)
tree3fef7f2fe67dd1563bc32aea10380fc58906dc11 /appc-config
parent19a3bc3313ea73b707499c1f003409aee3181255 (diff)
added test cases to ConfigComponentAdaptorTest
to increase code coverage Issue-ID: APPC-1086 Change-Id: I41734fcfc86da21114daacedaab02fbb2de86504 Signed-off-by: Sandeep J <sandeejh@in.ibm.com>
Diffstat (limited to 'appc-config')
-rw-r--r--appc-config/appc-config-adaptor/provider/src/test/java/org/onap/appc/ccadaptor/ConfigComponentAdaptorTest.java14
1 files changed, 13 insertions, 1 deletions
diff --git a/appc-config/appc-config-adaptor/provider/src/test/java/org/onap/appc/ccadaptor/ConfigComponentAdaptorTest.java b/appc-config/appc-config-adaptor/provider/src/test/java/org/onap/appc/ccadaptor/ConfigComponentAdaptorTest.java
index eae53a836..8e8c156ed 100644
--- a/appc-config/appc-config-adaptor/provider/src/test/java/org/onap/appc/ccadaptor/ConfigComponentAdaptorTest.java
+++ b/appc-config/appc-config-adaptor/provider/src/test/java/org/onap/appc/ccadaptor/ConfigComponentAdaptorTest.java
@@ -6,7 +6,7 @@
* ================================================================================
* Copyright (C) 2017 Amdocs
* =============================================================================
- * Modification Copyright (C) 2018 IBM.
+ * Modifications Copyright (C) 2018-2019 IBM.
* =============================================================================
* Modifications Copyright (C) 2018 Ericsson
* =============================================================================
@@ -408,6 +408,18 @@ public class ConfigComponentAdaptorTest {
}
@Test
+ public void testActivateMethod() {
+ ConfigComponentAdaptor config= new ConfigComponentAdaptor(new Properties());
+ assertEquals(ConfigStatus.SUCCESS, config.activate("test", new SvcLogicContext()));
+ }
+
+ @Test
+ public void testDeactivateMethod() {
+ ConfigComponentAdaptor config= new ConfigComponentAdaptor(new Properties());
+ assertEquals(ConfigStatus.SUCCESS, config.deactivate("test", new SvcLogicContext()));
+ }
+
+ @Test
public void testStaticReadFileExceptionFlow() {
assertEquals("", ConfigComponentAdaptor._readFile("NON_EXISTENT_FILE"));
}