From abe5b13384dc8d275e8395899e02818ef7c8fae4 Mon Sep 17 00:00:00 2001 From: Joss Armstrong Date: Wed, 27 Feb 2019 08:07:43 +0000 Subject: [PATCH] Test coverage for ObjectFactory Increase coverage from 0% to 100% Issue-ID: APPC-1499 Change-Id: Ia6209174b99acdeb03698eea9fe96d51a2cccd13 Signed-off-by: Joss Armstrong --- .../interfaceData/ObjectFactoryTest.java | 46 ++++++++++++++++++++++ 1 file changed, 46 insertions(+) create mode 100644 appc-config/appc-flow-controller/provider/src/test/java/org/onap/appc/flow/controller/interfaceData/ObjectFactoryTest.java 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); + } + +} -- 2.16.6