blob: b185f80aaf6318932b22860ead94b6909d61861b [file] [log] [blame]
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04001/*
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -04002 * ============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
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04007 *
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -04008 * http://www.apache.org/licenses/LICENSE-2.0
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -04009 *
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040010 * 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.
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040013 * ============LICENSE_END=========================================================
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040014 */
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040015
16
17import static org.junit.Assert.assertEquals;
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040018import org.junit.Test;
19import org.onap.so.bpmn.common.adapter.sdnc.RequestHeader;
20
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040021public class RequestHeaderTest {
22 RequestHeader rh = new RequestHeader();
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040023
Benjamin, Max (mb388a)f47919f2019-04-08 14:14:34 -040024 @Test
25 public void testRequestHeader() {
26 rh.setRequestId("requestId");
27 rh.setSvcInstanceId("svcInstanceId");
28 rh.setSvcAction("svcAction");
29 rh.setSvcOperation("svcOperation");
30 rh.setCallbackUrl("callbackUrl");
31 rh.setMsoAction("msoAction");
32 assertEquals(rh.getRequestId(), "requestId");
33 assertEquals(rh.getSvcInstanceId(), "svcInstanceId");
34 assertEquals(rh.getSvcAction(), "svcAction");
35 assertEquals(rh.getSvcOperation(), "svcOperation");
36 assertEquals(rh.getCallbackUrl(), "callbackUrl");
37 assertEquals(rh.getMsoAction(), "msoAction");
38 assert (rh.toString() != null);
39 }
Benjamin, Max (mb388a)5a6a6de2018-07-30 15:56:09 -040040}