Junit Class added for ObjectFactory.java 68/79768/2
authorSudarshan Kumar <sudars19@in.ibm.com>
Wed, 6 Mar 2019 10:00:52 +0000 (15:30 +0530)
committerMarcus Williams <marcus.williams@intel.com>
Wed, 6 Mar 2019 16:32:19 +0000 (16:32 +0000)
Junit Class added for ObjectFactory.java

Issue-ID: SO-1576
Change-Id: I82d8306f7af80e990044b97c404dc232105cdf68
Signed-off-by: Sudarshan Kumar <sudars19@in.ibm.com>
bpmn/mso-infrastructure-bpmn/src/test/java/org/onap/so/bpmn/common/adapter/sdnc/ObjectFactoryTest.java [new file with mode: 0644]

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