Merge "Reorder modifiers"
[so.git] / adapters / mso-adapters-rest-interface / src / test / java / org / openecomp / mso / openstack / beans / VnfRollbackTest.java
1 /*-
2  * ============LICENSE_START=======================================================
3  * ONAP - SO
4  * ================================================================================
5  * Copyright (C) 2018 Huawei Technologies Co., Ltd. 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.openecomp.mso.openstack.beans;
21
22 import org.junit.Test;
23 import org.openecomp.mso.entity.MsoRequest;
24
25 public class VnfRollbackTest {
26
27     VnfRollback vnfRollback = new VnfRollback();
28
29     @Test
30     public void getVnfId() throws Exception {
31         vnfRollback.getVnfId();
32     }
33
34     @Test
35     public void setVnfId() throws Exception {
36         vnfRollback.setVnfId("test");
37     }
38
39     @Test
40     public void getTenantId() throws Exception {
41         vnfRollback.getTenantId();
42     }
43
44     @Test
45     public void setTenantId() throws Exception {
46         vnfRollback.setTenantId("test");
47     }
48
49     @Test
50     public void getCloudSiteId() throws Exception {
51         vnfRollback.getCloudSiteId();
52     }
53
54     @Test
55     public void setCloudSiteId() throws Exception {
56         vnfRollback.setCloudSiteId("test");
57     }
58
59     @Test
60     public void getTenantCreated() throws Exception {
61         vnfRollback.getTenantCreated();
62     }
63
64     @Test
65     public void setTenantCreated() throws Exception {
66         vnfRollback.setTenantCreated(true);
67     }
68
69     @Test
70     public void getVnfCreated() throws Exception {
71         vnfRollback.getVnfCreated();
72     }
73
74     @Test
75     public void setVnfCreated() throws Exception {
76         vnfRollback.setVnfCreated(true);
77     }
78
79     @Test
80     public void getMsoRequest() throws Exception {
81         vnfRollback.getMsoRequest();
82     }
83
84     @Test
85     public void setMsoRequest() throws Exception {
86         vnfRollback.setMsoRequest(new MsoRequest());
87     }
88
89     @Test
90     public void getVolumeGroupName() throws Exception {
91         vnfRollback.getVolumeGroupName();
92     }
93
94     @Test
95     public void setVolumeGroupName() throws Exception {
96         vnfRollback.setVolumeGroupName("test");
97     }
98
99     @Test
100     public void getVolumeGroupId() throws Exception {
101         vnfRollback.getVolumeGroupId();
102     }
103
104     @Test
105     public void setVolumeGroupId() throws Exception {
106         vnfRollback.setVolumeGroupId("test");
107     }
108
109     @Test
110     public void getRequestType() throws Exception {
111         vnfRollback.getRequestType();
112     }
113
114     @Test
115     public void setRequestType() throws Exception {
116         vnfRollback.setRequestType("test");
117     }
118
119     @Test
120     public void getVolumeGroupHeatStackId() throws Exception {
121         vnfRollback.getVolumeGroupHeatStackId();
122     }
123
124     @Test
125     public void setVolumeGroupHeatStackId() throws Exception {
126         vnfRollback.setVolumeGroupHeatStackId("test");
127     }
128
129     @Test
130     public void getBaseGroupHeatStackId() throws Exception {
131         vnfRollback.getBaseGroupHeatStackId();
132     }
133
134     @Test
135     public void setBaseGroupHeatStackId() throws Exception {
136         vnfRollback.setBaseGroupHeatStackId("test");
137     }
138
139     @Test
140     public void isBase() throws Exception {
141         vnfRollback.isBase();
142     }
143
144     @Test
145     public void setIsBase() throws Exception {
146         vnfRollback.setIsBase(true);
147     }
148
149     @Test
150     public void getVfModuleStackId() throws Exception {
151         vnfRollback.getVfModuleStackId();
152     }
153
154     @Test
155     public void setVfModuleStackId() throws Exception {
156         vnfRollback.setVfModuleStackId("test");
157     }
158
159     @Test
160     public void getModelCustomizationUuid() throws Exception {
161         vnfRollback.getModelCustomizationUuid();
162     }
163
164     @Test
165     public void setModelCustomizationUuid() throws Exception {
166         vnfRollback.setModelCustomizationUuid("test");
167     }
168
169     @Test
170     public void getMode() throws Exception {
171         vnfRollback.getMode();
172     }
173
174     @Test
175     public void setMode() throws Exception {
176         vnfRollback.setMode("test");
177     }
178
179 }