aboutsummaryrefslogtreecommitdiffstats
path: root/bpmn/mso-infrastructure-bpmn
diff options
context:
space:
mode:
authorSudarshan Kumar <sudars19@in.ibm.com>2019-03-06 15:30:52 +0530
committerMarcus Williams <marcus.williams@intel.com>2019-03-06 16:32:19 +0000
commit1b70a2bbb6fd32de75f7dcd7a865c4bc84291c34 (patch)
tree647c579718c9225bf6f1c3081a13cc7f300ed05a /bpmn/mso-infrastructure-bpmn
parent42dd47e5c8431cafee7b949122672d422e100ae3 (diff)
Junit Class added for ObjectFactory.java
Junit Class added for ObjectFactory.java Issue-ID: SO-1576 Change-Id: I82d8306f7af80e990044b97c404dc232105cdf68 Signed-off-by: Sudarshan Kumar <sudars19@in.ibm.com>
Diffstat (limited to 'bpmn/mso-infrastructure-bpmn')
-rw-r--r--bpmn/mso-infrastructure-bpmn/src/test/java/org/onap/so/bpmn/common/adapter/sdnc/ObjectFactoryTest.java63
1 files changed, 63 insertions, 0 deletions
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());
+ }
+
+}