summaryrefslogtreecommitdiffstats
diff options
context:
space:
mode:
-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);
+ }
+
+}