Test coverage for ObjectFactory 44/79244/2
authorJoss Armstrong <joss.armstrong@ericsson.com>
Wed, 27 Feb 2019 08:07:43 +0000 (08:07 +0000)
committerTakamune Cho <takamune.cho@att.com>
Wed, 27 Feb 2019 18:10:56 +0000 (18:10 +0000)
Increase coverage from 0% to 100%

Issue-ID: APPC-1499
Change-Id: Ia6209174b99acdeb03698eea9fe96d51a2cccd13
Signed-off-by: Joss Armstrong <joss.armstrong@ericsson.com>
appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/controller/interfaceData/ObjectFactoryTest.java [new file with mode: 0644]

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 (file)
index 0000000..ef41499
--- /dev/null
@@ -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);
+    }
+
+}