Replaced all tabs with spaces in java and pom.xml
[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 import org.junit.Before;
24 import org.junit.Test;
25
26 public class ObjectFactoryTest {
27
28     ObjectFactory objectFactory;
29
30     @Before
31     public void setUp() {
32         objectFactory = new ObjectFactory();
33     }
34
35     @Test
36     public void testCreateRequestHeader() {
37         assertEquals(RequestHeader.class.getName(), objectFactory.createRequestHeader().getClass().getName());
38     }
39
40     @Test
41     public void testCreateSDNCAdapterResponse() {
42         assertEquals(SDNCAdapterResponse.class.getName(),
43                 objectFactory.createSDNCAdapterResponse().getClass().getName());
44     }
45
46     @Test
47     public void testSDNCAdapterCallbackRequest() {
48         assertEquals(SDNCAdapterCallbackRequest.class.getName(),
49                 objectFactory.createSDNCAdapterCallbackRequest().getClass().getName());
50     }
51
52     @Test
53     public void testCreateCallbackHeader() {
54         assertEquals(CallbackHeader.class.getName(), objectFactory.createCallbackHeader().getClass().getName());
55     }
56
57     @Test
58     public void testCreateSDNCAdapterRequest() {
59         assertEquals(SDNCAdapterRequest.class.getName(), objectFactory.createSDNCAdapterRequest().getClass().getName());
60     }
61
62 }