f0f6fa79e0ba5640028886573fb6b202870336eb
[so.git] / bpmn / MSOCommonBPMN / src / test / java / org / onap / so / bpmn / common / recipe / ResourceRecipeRequestTest.java
1 /*
2 * ============LICENSE_START=======================================================
3  * ONAP : SO
4  * ================================================================================
5  * Copyright (C) 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.onap.so.bpmn.common.recipe;
21
22 import static org.junit.Assert.*;
23
24 import org.junit.Test;
25 import org.onap.so.BaseTest;
26
27 public class ResourceRecipeRequestTest extends BaseTest{
28
29         ResourceRecipeRequest rr=new ResourceRecipeRequest();
30         BpmnParam bp=new BpmnParam();
31         @Test
32         public void test() {
33                 rr.setResourceInput(bp);
34                 rr.setHost(bp);
35                 rr.setRequestId(bp);
36                 rr.setRequestAction(bp);
37                 rr.setServiceInstanceId(bp);
38                 rr.setServiceType(bp);
39                 rr.setRecipeParams(bp);
40                 assertEquals(rr.getResourceInput(),bp);
41                 assertEquals(rr.getHost(),bp);
42                 assertEquals(rr.getRequestId(),bp);
43                 assertEquals(rr.getRequestAction(),bp);
44                 assertEquals(rr.getServiceInstanceId(),bp);
45                 assertEquals(rr.getServiceType(),bp);
46                 assertEquals(rr.getRecipeParams(),bp);
47         }
48         @Test
49         public void testToString(){
50                 assert(rr.toString()!=null);
51         }
52 }