Merge "Reorder modifiers"
[so.git] / bpmn / MSOCommonBPMN / src / test / java / org / openecomp / mso / client / sdnc / beans / SDNCRequestTest.java
1 /*
2 * ============LICENSE_START=======================================================
3 * ONAP : SO
4 * ================================================================================
5 * Copyright 2018 TechMahindra
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.openecomp.mso.client.sdnc.beans;
21
22 import static org.junit.Assert.*;
23
24
25
26 import org.junit.Test;
27 public class SDNCRequestTest {
28         private SDNCRequest sdncrequest = new SDNCRequest();
29         SDNCSvcAction svcaction = SDNCSvcAction.ACTIVATE;
30         SDNCSvcOperation svcoperation = SDNCSvcOperation.VNF_TOPOLOGY_OPERATION; 
31         @Test
32         public void testSDNCRequestTest() {
33                 sdncrequest.setRequestId("requestId");
34                 sdncrequest.setSvcInstanceId("svcInstanceId");
35                 sdncrequest.setSvcAction(svcaction);
36                 sdncrequest.setSvcOperation(svcoperation);
37                 sdncrequest.setCallbackUrl("callbackUrl");
38                 sdncrequest.setMsoAction("msoAction");
39                 sdncrequest.setRequestData("requestData");
40                 assertEquals(sdncrequest.getRequestId(), "requestId");
41                 assertEquals(sdncrequest.getSvcInstanceId(), "svcInstanceId");
42                 assertEquals(sdncrequest.getSvcAction(), svcaction);
43                 assertEquals(sdncrequest.getSvcOperation(), svcoperation);
44                 assertEquals(sdncrequest.getCallbackUrl(), "callbackUrl");
45                 assertEquals(sdncrequest.getMsoAction(), "msoAction");
46                 assertEquals(sdncrequest.getRequestData(), "requestData");
47                 }
48         @Test
49         public void testToString(){
50                 assert(sdncrequest.toString()!=null);
51         }
52
53 }