Replaced all tabs with spaces in java and pom.xml
[so.git] / adapters / mso-sdnc-adapter / src / test / java / org / onap / so / adapters / sdnc / client / CallbackHeaderTest.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 package org.onap.so.adapters.sdnc.client;
17
18 import static org.junit.Assert.assertEquals;
19 import static org.junit.Assert.assertNotNull;
20 import org.junit.Test;
21
22 public class CallbackHeaderTest {
23
24     static CallbackHeader cb = new CallbackHeader();
25
26     @Test
27     public final void testCallbackHeader() {
28         cb.setRequestId("413658f4-7f42-482e-b834-23a5c15657da-1474471336781");
29         cb.setResponseCode("200");
30         cb.setResponseMessage("OK");
31         assertNotNull(cb.getRequestId());
32         assertNotNull(cb.getResponseCode());
33         assertNotNull(cb.getResponseMessage());
34         assertEquals("413658f4-7f42-482e-b834-23a5c15657da-1474471336781", cb.getRequestId());
35         assertEquals("200", cb.getResponseCode());
36         assertEquals("OK", cb.getResponseMessage());
37     }
38
39     @Test
40     public void testtoString() {
41         assertNotNull(cb.toString());
42     }
43 }