From 1b70a2bbb6fd32de75f7dcd7a865c4bc84291c34 Mon Sep 17 00:00:00 2001 From: Sudarshan Kumar Date: Wed, 6 Mar 2019 15:30:52 +0530 Subject: Junit Class added for ObjectFactory.java Junit Class added for ObjectFactory.java Issue-ID: SO-1576 Change-Id: I82d8306f7af80e990044b97c404dc232105cdf68 Signed-off-by: Sudarshan Kumar --- .../common/adapter/sdnc/ObjectFactoryTest.java | 63 ++++++++++++++++++++++ 1 file changed, 63 insertions(+) create mode 100644 bpmn/mso-infrastructure-bpmn/src/test/java/org/onap/so/bpmn/common/adapter/sdnc/ObjectFactoryTest.java (limited to 'bpmn') diff --git a/bpmn/mso-infrastructure-bpmn/src/test/java/org/onap/so/bpmn/common/adapter/sdnc/ObjectFactoryTest.java b/bpmn/mso-infrastructure-bpmn/src/test/java/org/onap/so/bpmn/common/adapter/sdnc/ObjectFactoryTest.java new file mode 100644 index 0000000000..bdc48392af --- /dev/null +++ b/bpmn/mso-infrastructure-bpmn/src/test/java/org/onap/so/bpmn/common/adapter/sdnc/ObjectFactoryTest.java @@ -0,0 +1,63 @@ +/*- + * ============LICENSE_START======================================================= + * ONAP - SO + * ================================================================================ + * Copyright (C) 2019 IBM. + * ================================================================================ + * 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.so.bpmn.common.adapter.sdnc; + +import static org.junit.Assert.assertEquals; + +import org.junit.Before; +import org.junit.Test; + +public class ObjectFactoryTest { + + ObjectFactory objectFactory; + + @Before + public void setUp() { + objectFactory = new ObjectFactory(); + } + + @Test + public void testCreateRequestHeader() { + assertEquals(RequestHeader.class.getName(), objectFactory.createRequestHeader().getClass().getName()); + } + + @Test + public void testCreateSDNCAdapterResponse() { + assertEquals(SDNCAdapterResponse.class.getName(), + objectFactory.createSDNCAdapterResponse().getClass().getName()); + } + + @Test + public void testSDNCAdapterCallbackRequest() { + assertEquals(SDNCAdapterCallbackRequest.class.getName(), + objectFactory.createSDNCAdapterCallbackRequest().getClass().getName()); + } + + @Test + public void testCreateCallbackHeader() { + assertEquals(CallbackHeader.class.getName(), objectFactory.createCallbackHeader().getClass().getName()); + } + + @Test + public void testCreateSDNCAdapterRequest() { + assertEquals(SDNCAdapterRequest.class.getName(), objectFactory.createSDNCAdapterRequest().getClass().getName()); + } + +} -- cgit 1.2.3-korg