bdc48392affa7f9a63b13e822e8f6cfcdd78a2b3
[so.git] / bpmn / mso-infrastructure-bpmn / src / test / java / org / onap / so / bpmn / common / adapter / sdnc / ObjectFactoryTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2019 IBM.
6  * ================================================================================
7  * Licensed under the Apache License, Version 2.0 (the "License");
8  * you may not use this file except in compliance with the License.
9  * You may obtain a copy of the License at
10  *
11  *      http://www.apache.org/licenses/LICENSE-2.0
12  *
13  * Unless required by applicable law or agreed to in writing, software
14  * distributed under the License is distributed on an "AS IS" BASIS,
15  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16  * See the License for the specific language governing permissions and
17  * limitations under the License.
18  * ============LICENSE_END=========================================================
19  */
20 package org.onap.so.bpmn.common.adapter.sdnc;
21
22 import static org.junit.Assert.assertEquals;
23
24 import org.junit.Before;
25 import org.junit.Test;
26
27 public class ObjectFactoryTest {
28
29     ObjectFactory objectFactory;
30
31     @Before
32     public void setUp() {
33         objectFactory = new ObjectFactory();
34     }
35
36     @Test
37     public void testCreateRequestHeader() {
38         assertEquals(RequestHeader.class.getName(), objectFactory.createRequestHeader().getClass().getName());
39     }
40
41     @Test
42     public void testCreateSDNCAdapterResponse() {
43         assertEquals(SDNCAdapterResponse.class.getName(),
44                 objectFactory.createSDNCAdapterResponse().getClass().getName());
45     }
46
47     @Test
48     public void testSDNCAdapterCallbackRequest() {
49         assertEquals(SDNCAdapterCallbackRequest.class.getName(),
50                 objectFactory.createSDNCAdapterCallbackRequest().getClass().getName());
51     }
52
53     @Test
54     public void testCreateCallbackHeader() {
55         assertEquals(CallbackHeader.class.getName(), objectFactory.createCallbackHeader().getClass().getName());
56     }
57
58     @Test
59     public void testCreateSDNCAdapterRequest() {
60         assertEquals(SDNCAdapterRequest.class.getName(), objectFactory.createSDNCAdapterRequest().getClass().getName());
61     }
62
63 }