summaryrefslogtreecommitdiffstats
path: root/bpmn
diff options
context:
space:
mode:
authorSteve Smokowski <ss835w@att.com>2019-03-13 13:27:12 +0000
committerGerrit Code Review <gerrit@onap.org>2019-03-13 13:27:12 +0000
commite14f792af587cb181b2f7fc1357985a908d978d3 (patch)
tree18982e2a5da6fa525ee515845597afd7757569a1 /bpmn
parent934719ae963294c125eec4323e41284e5035eec3 (diff)
parent3488863148024d9ecf79d01f0d9ef1bafdacdfed (diff)
Merge changes Id0369478,I82d8306f
* changes: Minior Change - Licence Statement Junit Class added for ObjectFactory.java
Diffstat (limited to '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());
+ }
+
+}