Replaced all tabs with spaces in java and pom.xml
[so.git] / mso-api-handlers / mso-api-handler-common / src / test / java / org / onap / so / apihandler / camundabeans / BpmnRequestTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2018 Huawei Intellectual Property. All rights reserved.
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.apihandler.camundabeans;
21
22 import org.junit.Test;
23
24 public class BpmnRequestTest {
25
26     BpmnRequest bpmnRequest = new BpmnRequest();
27
28     @Test
29     public void getHostTest() throws Exception {
30         bpmnRequest.getHost();
31     }
32
33     @Test
34     public void setHostTest() throws Exception {
35         bpmnRequest.setHost(new CamundaInput());
36     }
37
38     @Test
39     public void getRequestIdTest() throws Exception {
40         bpmnRequest.getRequestId();
41     }
42
43     @Test
44     public void setRequestIdTest() throws Exception {
45         bpmnRequest.setRequestId(new CamundaInput());
46     }
47
48     @Test
49     public void getIsBaseVfModuleTest() throws Exception {
50         bpmnRequest.getIsBaseVfModule();
51     }
52
53     @Test
54     public void setIsBaseVfModuleTest() throws Exception {
55         bpmnRequest.setIsBaseVfModule(new CamundaBooleanInput());
56     }
57
58     @Test
59     public void getRecipeTimeoutTest() throws Exception {
60         bpmnRequest.getRecipeTimeout();
61     }
62
63     @Test
64     public void setRecipeTimeoutTest() throws Exception {
65         bpmnRequest.setRecipeTimeout(new CamundaIntegerInput());
66     }
67
68     @Test
69     public void getRequestActionTest() throws Exception {
70         bpmnRequest.getRequestAction();
71     }
72
73     @Test
74     public void setRequestActionTest() throws Exception {
75         bpmnRequest.setRequestAction(new CamundaInput());
76     }
77
78     @Test
79     public void getServiceInstanceIdTest() throws Exception {
80         bpmnRequest.getServiceInstanceId();
81     }
82
83     @Test
84     public void setServiceInstanceIdTest() throws Exception {
85         bpmnRequest.setServiceInstanceId(new CamundaInput());
86     }
87
88     @Test
89     public void getVnfIdTest() throws Exception {
90         bpmnRequest.getVnfId();
91     }
92
93     @Test
94     public void setVnfIdTest() throws Exception {
95         bpmnRequest.setVnfId(new CamundaInput());
96     }
97
98     @Test
99     public void getVfModuleIdTest() throws Exception {
100         bpmnRequest.getVnfId();
101     }
102
103     @Test
104     public void setVfModuleIdTest() throws Exception {
105         bpmnRequest.setVfModuleId(new CamundaInput());
106     }
107
108     @Test
109     public void getVolumeGroupIdTest() throws Exception {
110         bpmnRequest.getVolumeGroupId();
111     }
112
113     @Test
114     public void setVolumeGroupIdTest() throws Exception {
115         bpmnRequest.setVolumeGroupId(new CamundaInput());
116     }
117
118     @Test
119     public void getNetworkIdTest() throws Exception {
120         bpmnRequest.getNetworkId();
121     }
122
123     @Test
124     public void setNetworkIdTest() throws Exception {
125         bpmnRequest.setNetworkId(new CamundaInput());
126     }
127
128     @Test
129     public void getServiceTypeTest() throws Exception {
130         bpmnRequest.getServiceType();
131     }
132
133     @Test
134     public void setServiceTypeTest() throws Exception {
135         bpmnRequest.setServiceType(new CamundaInput());
136     }
137
138     @Test
139     public void getVnfTypeTest() throws Exception {
140         bpmnRequest.getVnfType();
141     }
142
143     @Test
144     public void setVnfTypeTest() throws Exception {
145         bpmnRequest.setVnfType(new CamundaInput());
146     }
147
148     @Test
149     public void getVfModuleTypeTest() throws Exception {
150         bpmnRequest.getVfModuleType();
151     }
152
153     @Test
154     public void setVfModuleTypeTest() throws Exception {
155         bpmnRequest.setVfModuleType(new CamundaInput());
156     }
157
158     @Test
159     public void getNetworkTypeTest() throws Exception {
160         bpmnRequest.getNetworkType();
161     }
162
163     @Test
164     public void setNetworkTypeTest() throws Exception {
165         bpmnRequest.setNetworkType(new CamundaInput());
166     }
167
168     @Test
169     public void getRequestDetailsTest() throws Exception {
170         bpmnRequest.getRequestDetails();
171     }
172
173     @Test
174     public void setRequestDetailsTest() throws Exception {
175         bpmnRequest.setRequestDetails(new CamundaInput());
176     }
177
178 }