Replaced all tabs with spaces in java and pom.xml
[so.git] / bpmn / mso-infrastructure-bpmn / src / test / java / SDNCAdapterCallbackRequestTest.java
1 /*
2  * ============LICENSE_START======================================================= ONAP : SO
3  * ================================================================================ Copyright (C) 2018 TechMahindra
4  * ================================================================================ Licensed under the Apache License,
5  * Version 2.0 (the "License"); you may not use this file except in compliance with the License. You may obtain a copy
6  * of the License at
7  * 
8  * http://www.apache.org/licenses/LICENSE-2.0
9  * 
10  * Unless required by applicable law or agreed to in writing, software distributed under the License is distributed on
11  * an "AS IS" BASIS, WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied. See the License for the
12  * specific language governing permissions and limitations under the License.
13  * ============LICENSE_END=========================================================
14  */
15
16
17 import static org.junit.Assert.assertEquals;
18 import static org.junit.Assert.assertNotNull;
19 import org.junit.Test;
20 import org.onap.so.bpmn.common.adapter.sdnc.CallbackHeader;
21 import org.onap.so.bpmn.common.adapter.sdnc.SDNCAdapterCallbackRequest;
22
23 public class SDNCAdapterCallbackRequestTest {
24
25     SDNCAdapterCallbackRequest sdnccall = new SDNCAdapterCallbackRequest();
26     CallbackHeader cbh = new CallbackHeader();
27     String o = "test";
28
29     @Test
30     public void testSDNCAdapterCallbackRequest() {
31         sdnccall.setCallbackHeader(cbh);
32         sdnccall.setRequestData(o);
33         assertEquals(sdnccall.getCallbackHeader(), cbh);
34         assertEquals(sdnccall.getRequestData(), o);
35         assertNotNull(sdnccall.toString());
36     }
37
38 }