aboutsummaryrefslogtreecommitdiffstats
path: root/appc-config
diff options
context:
space:
mode:
authorJoss Armstrong <joss.armstrong@ericsson.com>2019-02-27 08:07:43 +0000
committerTakamune Cho <takamune.cho@att.com>2019-02-27 18:10:56 +0000
commitabe5b13384dc8d275e8395899e02818ef7c8fae4 (patch)
tree4fa3f25349fe2d54c0adf558bb2155c814ef6d07 /appc-config
parent375082572741a5c20059d10ccefb682c7cc44e54 (diff)
Test coverage for ObjectFactory
Increase coverage from 0% to 100% Issue-ID: APPC-1499 Change-Id: Ia6209174b99acdeb03698eea9fe96d51a2cccd13 Signed-off-by: Joss Armstrong <joss.armstrong@ericsson.com>
Diffstat (limited to 'appc-config')
-rw-r--r--appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/controller/interfaceData/ObjectFactoryTest.java46
1 files changed, 46 insertions, 0 deletions
diff --git a/appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/controller/interfaceData/ObjectFactoryTest.java b/appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/controller/interfaceData/ObjectFactoryTest.java
new file mode 100644
index 000000000..ef41499c5
--- /dev/null
+++ b/appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/controller/interfaceData/ObjectFactoryTest.java
@@ -0,0 +1,46 @@
+/*
+ * ============LICENSE_START=======================================================
+ * ONAP : APPC
+ * ================================================================================
+ * Copyright (C) 2019 Ericsson
+ * ================================================================================
+ * 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
+ *
+ * http://www.apache.org/licenses/LICENSE-2.0
+ *
+ * Unless required by applicable law or agreed to in writing, software
+ * distributed under the License is distributed on an "AS IS" BASIS,
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
+ * See the License for the specific language governing permissions and
+ * limitations under the License.
+ *
+ * ============LICENSE_END=========================================================
+ */
+
+package org.onap.appc.flow.controller.interfaceData;
+
+import static org.junit.Assert.assertTrue;
+import org.junit.Test;
+
+public class ObjectFactoryTest {
+
+ private final ObjectFactory objectFactory = new ObjectFactory();
+
+ @Test
+ public void testCreateMethods() {
+ assertTrue(objectFactory.createCapabilities() instanceof Capabilities);
+ assertTrue(objectFactory.createRequestInfo() instanceof RequestInfo);
+ assertTrue(objectFactory.createActionIdentifier() instanceof ActionIdentifier);
+ assertTrue(objectFactory.createDependencyInfo() instanceof DependencyInfo);
+ assertTrue(objectFactory.createVnfcs() instanceof Vnfcs);
+ assertTrue(objectFactory.createVm() instanceof Vm);
+ assertTrue(objectFactory.createVnfcslist() instanceof Vnfcslist);
+ assertTrue(objectFactory.createTunableParameters() instanceof TunableParameters);
+ assertTrue(objectFactory.createVnfInfo() instanceof VnfInfo);
+ assertTrue(objectFactory.createInventoryInfo() instanceof InventoryInfo);
+ assertTrue(objectFactory.createInput() instanceof Input);
+ }
+
+}