aboutsummaryrefslogtreecommitdiffstats
path: root/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans
diff options
context:
space:
mode:
authorBenjamin, Max (mb388a) <mb388a@us.att.com>2018-07-30 15:56:09 -0400
committerBenjamin, Max (mb388a) <mb388a@us.att.com>2018-07-31 11:09:25 -0400
commit5a6a6de6f1a26a1897e4917a0df613e25a24eb70 (patch)
tree59a968f27b4b603aacc9d5e7b51fb598aeec5321 /adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans
parentb6dc38501f3b746426b42d9de4cc883d894149e8 (diff)
Containerization feature of SO
Change-Id: I95381232eeefcd247a66a5cec370a8ce1c288e18 Issue-ID: SO-670 Signed-off-by: Benjamin, Max (mb388a) <mb388a@us.att.com>
Diffstat (limited to 'adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans')
-rw-r--r--adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/HostRouteTest.java48
-rw-r--r--adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/MsoTenantTest.java60
-rw-r--r--adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/NetworkInfoTest.java86
-rw-r--r--adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/NetworkRollbackTest.java151
-rw-r--r--adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/PoolTest.java48
-rw-r--r--adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/RouteTargetTest.java48
-rw-r--r--adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/StackInfoTest.java90
-rw-r--r--adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/SubnetTest.java141
-rw-r--r--adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/VnfRollbackTest.java179
9 files changed, 0 insertions, 851 deletions
diff --git a/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/HostRouteTest.java b/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/HostRouteTest.java
deleted file mode 100644
index 14f0485ba1..0000000000
--- a/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/HostRouteTest.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * Copyright (C) 2018 Huawei Technologies Co., Ltd. All rights reserved.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-package org.openecomp.mso.openstack.beans;
-
-import org.junit.Test;
-
-public class HostRouteTest {
-
- HostRoute hostRoute = new HostRoute();
-
- @Test
- public void getPrefix() throws Exception {
- hostRoute.getPrefix();
- }
-
- @Test
- public void setPrefix() throws Exception {
- hostRoute.setPrefix("192.168.21/0");
- }
-
- @Test
- public void getNextHop() throws Exception {
- hostRoute.setNextHop("127.0.0.1");
- }
-
- @Test
- public void setNextHop() throws Exception {
- hostRoute.setNextHop("127.0.0.1");
- }
-
-} \ No newline at end of file
diff --git a/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/MsoTenantTest.java b/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/MsoTenantTest.java
deleted file mode 100644
index 6e1f392c80..0000000000
--- a/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/MsoTenantTest.java
+++ /dev/null
@@ -1,60 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * Copyright (C) 2018 Huawei Technologies Co., Ltd. All rights reserved.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-package org.openecomp.mso.openstack.beans;
-
-import org.junit.Test;
-
-import java.util.HashMap;
-
-public class MsoTenantTest {
-
- MsoTenant msoTenant = new MsoTenant();
-
- @Test
- public void getTenantId() throws Exception {
- msoTenant.getTenantId();
- }
-
- @Test
- public void setTenantId() throws Exception {
- msoTenant.setTenantId("id-123");
- }
-
- @Test
- public void getTenantName() throws Exception {
- msoTenant.getTenantName();
- }
-
- @Test
- public void setTenantName() throws Exception {
- msoTenant.setTenantName("test");
- }
-
- @Test
- public void getMetadata() throws Exception {
- msoTenant.getMetadata();
- }
-
- @Test
- public void setMetadata() throws Exception {
- msoTenant.setMetadata(new HashMap<>());
- }
-
-} \ No newline at end of file
diff --git a/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/NetworkInfoTest.java b/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/NetworkInfoTest.java
deleted file mode 100644
index ec0b917a3d..0000000000
--- a/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/NetworkInfoTest.java
+++ /dev/null
@@ -1,86 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * Copyright (C) 2018 Huawei Technologies Co., Ltd. All rights reserved.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-package org.openecomp.mso.openstack.beans;
-
-import com.woorea.openstack.quantum.model.Network;
-import org.junit.Test;
-
-import java.util.Arrays;
-
-public class NetworkInfoTest {
-
- NetworkInfo networkInfo = new NetworkInfo(new Network());
-
- @Test
- public void getName() throws Exception {
- networkInfo.getName();
- }
-
- @Test
- public void setName() throws Exception {
- networkInfo.setName("test");
- }
-
- @Test
- public void getId() throws Exception {
- networkInfo.getId();
- }
-
- @Test
- public void setId() throws Exception {
- networkInfo.setId("test");
- }
-
- @Test
- public void getStatus() throws Exception {
- networkInfo.getStatus();
- }
-
- @Test
- public void setStatus() throws Exception {
- networkInfo.setStatus(null);
- }
-
- @Test
- public void getProvider() throws Exception {
- networkInfo.getProvider();
- }
-
- @Test
- public void setProvider() throws Exception {
- networkInfo.setProvider("provider");
- }
-
- @Test
- public void getVlans() throws Exception {
- networkInfo.getVlans();
- }
-
- @Test
- public void setVlans() throws Exception {
- networkInfo.setVlans(Arrays.asList(10, 20, 30));
- }
-
- @Test
- public void getSubnets() throws Exception {
- networkInfo.getSubnets();
- }
-
-} \ No newline at end of file
diff --git a/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/NetworkRollbackTest.java b/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/NetworkRollbackTest.java
deleted file mode 100644
index b6245f642f..0000000000
--- a/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/NetworkRollbackTest.java
+++ /dev/null
@@ -1,151 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * Copyright (C) 2018 Huawei Technologies Co., Ltd. All rights reserved.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-package org.openecomp.mso.openstack.beans;
-
-import org.junit.Test;
-import org.openecomp.mso.entity.MsoRequest;
-
-import java.util.Arrays;
-
-public class NetworkRollbackTest {
-
- NetworkRollback networkRollback = new NetworkRollback();
-
- @Test
- public void getNetworkId() throws Exception {
- networkRollback.getNetworkId();
- }
-
- @Test
- public void setNetworkId() throws Exception {
- networkRollback.setNetworkId("255.255.255.0");
- }
-
- @Test
- public void getNeutronNetworkId() throws Exception {
- networkRollback.getNeutronNetworkId();
- }
-
- @Test
- public void setNeutronNetworkId() throws Exception {
- networkRollback.setNeutronNetworkId("192.168.0.0");
- }
-
- @Test
- public void getNetworkStackId() throws Exception {
- networkRollback.getNetworkStackId();
- }
-
- @Test
- public void setNetworkStackId() throws Exception {
- networkRollback.setNetworkStackId("id-123");
- }
-
- @Test
- public void getTenantId() throws Exception {
- networkRollback.getTenantId();
- }
-
- @Test
- public void setTenantId() throws Exception {
- networkRollback.setTenantId("id-123");
- }
-
- @Test
- public void getCloudId() throws Exception {
- networkRollback.getCloudId();
- }
-
- @Test
- public void setCloudId() throws Exception {
- networkRollback.setCloudId("id-123");
- }
-
- @Test
- public void getNetworkType() throws Exception {
- networkRollback.getNetworkType();
- }
-
- @Test
- public void setNetworkType() throws Exception {
- networkRollback.setNetworkType("type");
- }
-
- @Test
- public void getModelCustomizationUuid() throws Exception {
- networkRollback.getModelCustomizationUuid();
- }
-
- @Test
- public void setModelCustomizationUuid() throws Exception {
- networkRollback.setModelCustomizationUuid("id-123");
- }
-
- @Test
- public void getNetworkCreated() throws Exception {
- networkRollback.getNetworkCreated();
- }
-
- @Test
- public void setNetworkCreated() throws Exception {
- networkRollback.setNetworkCreated(true);
- }
-
- @Test
- public void getNetworkName() throws Exception {
- networkRollback.getNetworkName();
- }
-
- @Test
- public void setNetworkName() throws Exception {
- networkRollback.setNetworkName("test");
- }
-
- @Test
- public void getPhysicalNetwork() throws Exception {
- networkRollback.getPhysicalNetwork();
- }
-
- @Test
- public void setPhysicalNetwork() throws Exception {
- networkRollback.setPhysicalNetwork("test");
- }
-
- @Test
- public void getVlans() throws Exception {
- networkRollback.getVlans();
- }
-
- @Test
- public void setVlans() throws Exception {
- networkRollback.setVlans(Arrays.asList(10, 20));
- }
-
- @Test
- public void getMsoRequest() throws Exception {
- networkRollback.getMsoRequest();
- }
-
- @Test
- public void setMsoRequest() throws Exception {
- networkRollback.setMsoRequest(new MsoRequest());
- }
-
-} \ No newline at end of file
diff --git a/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/PoolTest.java b/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/PoolTest.java
deleted file mode 100644
index 9795c18197..0000000000
--- a/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/PoolTest.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * Copyright (C) 2018 Huawei Technologies Co., Ltd. All rights reserved.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-package org.openecomp.mso.openstack.beans;
-
-import org.junit.Test;
-
-public class PoolTest {
-
- Pool pool = new Pool();
-
- @Test
- public void getStart() throws Exception {
- pool.getStart();
- }
-
- @Test
- public void setStart() throws Exception {
- pool.setStart("test");
- }
-
- @Test
- public void getEnd() throws Exception {
- pool.getEnd();
- }
-
- @Test
- public void setEnd() throws Exception {
- pool.setEnd("test");
- }
-
-} \ No newline at end of file
diff --git a/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/RouteTargetTest.java b/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/RouteTargetTest.java
deleted file mode 100644
index fd34f48276..0000000000
--- a/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/RouteTargetTest.java
+++ /dev/null
@@ -1,48 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * Copyright (C) 2018 Huawei Technologies Co., Ltd. All rights reserved.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-package org.openecomp.mso.openstack.beans;
-
-import org.junit.Test;
-
-public class RouteTargetTest {
-
- RouteTarget routeTarget = new RouteTarget();
-
- @Test
- public void getRouteTarget() throws Exception {
- routeTarget.getRouteTarget();
- }
-
- @Test
- public void setRouteTarget() throws Exception {
- routeTarget.setRouteTarget("1.1.1.1");
- }
-
- @Test
- public void getRouteTargetRole() throws Exception {
- routeTarget.getRouteTargetRole();
- }
-
- @Test
- public void setRole() throws Exception {
- routeTarget.setRole("test");
- }
-
-} \ No newline at end of file
diff --git a/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/StackInfoTest.java b/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/StackInfoTest.java
deleted file mode 100644
index b549b5f853..0000000000
--- a/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/StackInfoTest.java
+++ /dev/null
@@ -1,90 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * Copyright (C) 2018 Huawei Technologies Co., Ltd. All rights reserved.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-package org.openecomp.mso.openstack.beans;
-
-import org.junit.Test;
-
-import java.util.HashMap;
-
-public class StackInfoTest {
-
- StackInfo stackInfo = new StackInfo();
-
- @Test
- public void getName() throws Exception {
- stackInfo.getName();
- }
-
- @Test
- public void setName() throws Exception {
- stackInfo.setName("test");
- }
-
- @Test
- public void getCanonicalName() throws Exception {
- stackInfo.getCanonicalName();
- }
-
- @Test
- public void setCanonicalName() throws Exception {
- stackInfo.setCanonicalName("test");
- }
-
- @Test
- public void getStatus() throws Exception {
- stackInfo.getStatus();
- }
-
- @Test
- public void setStatus() throws Exception {
- stackInfo.setStatus(HeatStatus.BUILDING);
- }
-
- @Test
- public void getStatusMessage() throws Exception {
- stackInfo.getStatusMessage();
- }
-
- @Test
- public void setStatusMessage() throws Exception {
- stackInfo.setStatusMessage("test");
- }
-
- @Test
- public void getOutputs() throws Exception {
- stackInfo.getOutputs();
- }
-
- @Test
- public void setOutputs() throws Exception {
- stackInfo.setOutputs(new HashMap<>());
- }
-
- @Test
- public void getParameters() throws Exception {
- stackInfo.getParameters();
- }
-
- @Test
- public void setParameters() throws Exception {
- stackInfo.setParameters(new HashMap<>());
- }
-
-} \ No newline at end of file
diff --git a/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/SubnetTest.java b/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/SubnetTest.java
deleted file mode 100644
index 42781c04d1..0000000000
--- a/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/SubnetTest.java
+++ /dev/null
@@ -1,141 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * Copyright (C) 2018 Huawei Technologies Co., Ltd. All rights reserved.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-package org.openecomp.mso.openstack.beans;
-
-import org.junit.Test;
-
-import java.util.Arrays;
-import java.util.Collections;
-
-public class SubnetTest {
-
- Subnet subnet = new Subnet();
-
- @Test
- public void getSubnetName() throws Exception {
- subnet.getSubnetName();
- }
-
- @Test
- public void setSubnetName() throws Exception {
- subnet.setSubnetName("test");
- }
-
- @Test
- public void getAllocationPools() throws Exception {
- subnet.getAllocationPools();
- }
-
- @Test
- public void getCidr() throws Exception {
- subnet.getCidr();
- }
-
- @Test
- public void getDnsNameServers() throws Exception {
- subnet.getDnsNameServers();
- }
-
- @Test
- public void getEnableDHCP() throws Exception {
- subnet.getEnableDHCP();
- }
-
- @Test
- public void getAddrFromStart() throws Exception {
- subnet.getAddrFromStart();
- }
-
- @Test
- public void setAddrFromStart() throws Exception {
- subnet.setAddrFromStart(true);
- }
-
- @Test
- public void getGatewayIp() throws Exception {
- subnet.getGatewayIp();
- }
-
- @Test
- public void getHostRoutes() throws Exception {
- subnet.getHostRoutes();
- }
-
- @Test
- public void getNeutronId() throws Exception {
- subnet.getNeutronId();
- }
-
- @Test
- public void getIpVersion() throws Exception {
- subnet.getIpVersion();
- }
-
- @Test
- public void getSubnetId() throws Exception {
- subnet.getSubnetId();
- }
-
- @Test
- public void setAllocationPools() throws Exception {
- subnet.setAllocationPools(Arrays.asList());
- }
-
- @Test
- public void setCidr() throws Exception {
- subnet.setCidr("255.255.255.0");
- }
-
- @Test
- public void setDnsNameServers() throws Exception {
- subnet.setDnsNameServers(Arrays.asList());
- }
-
- @Test
- public void setEnableDHCP() throws Exception {
- subnet.setEnableDHCP(true);
- }
-
- @Test
- public void setGatewayIp() throws Exception {
- subnet.setGatewayIp("192.168.0.1");
- }
-
- @Test
- public void setHostRoutes() throws Exception {
- subnet.setHostRoutes(Collections.emptyList());
- }
-
- @Test
- public void setNeutronId() throws Exception {
- subnet.setNeutronId("test");
- }
-
- @Test
- public void setIpVersion() throws Exception {
- subnet.setIpVersion("ipv4");
- }
-
- @Test
- public void setSubnetId() throws Exception {
- subnet.setSubnetId("1.0.0.0");
- }
-
-} \ No newline at end of file
diff --git a/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/VnfRollbackTest.java b/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/VnfRollbackTest.java
deleted file mode 100644
index 9891811b86..0000000000
--- a/adapters/mso-adapters-rest-interface/src/test/java/org/openecomp/mso/openstack/beans/VnfRollbackTest.java
+++ /dev/null
@@ -1,179 +0,0 @@
-/*-
- * ============LICENSE_START=======================================================
- * ONAP - SO
- * ================================================================================
- * Copyright (C) 2018 Huawei Technologies Co., Ltd. All rights reserved.
- * ================================================================================
- * Licensed under the Apache License, Version 2.0 (the "License");
- * you may not use this file except in compliance with the License.
- * You may obtain a copy of the License at
- *
- * http://www.apache.org/licenses/LICENSE-2.0
- *
- * Unless required by applicable law or agreed to in writing, software
- * distributed under the License is distributed on an "AS IS" BASIS,
- * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
- * See the License for the specific language governing permissions and
- * limitations under the License.
- * ============LICENSE_END=========================================================
- */
-package org.openecomp.mso.openstack.beans;
-
-import org.junit.Test;
-import org.openecomp.mso.entity.MsoRequest;
-
-public class VnfRollbackTest {
-
- VnfRollback vnfRollback = new VnfRollback();
-
- @Test
- public void getVnfId() throws Exception {
- vnfRollback.getVnfId();
- }
-
- @Test
- public void setVnfId() throws Exception {
- vnfRollback.setVnfId("test");
- }
-
- @Test
- public void getTenantId() throws Exception {
- vnfRollback.getTenantId();
- }
-
- @Test
- public void setTenantId() throws Exception {
- vnfRollback.setTenantId("test");
- }
-
- @Test
- public void getCloudSiteId() throws Exception {
- vnfRollback.getCloudSiteId();
- }
-
- @Test
- public void setCloudSiteId() throws Exception {
- vnfRollback.setCloudSiteId("test");
- }
-
- @Test
- public void getTenantCreated() throws Exception {
- vnfRollback.getTenantCreated();
- }
-
- @Test
- public void setTenantCreated() throws Exception {
- vnfRollback.setTenantCreated(true);
- }
-
- @Test
- public void getVnfCreated() throws Exception {
- vnfRollback.getVnfCreated();
- }
-
- @Test
- public void setVnfCreated() throws Exception {
- vnfRollback.setVnfCreated(true);
- }
-
- @Test
- public void getMsoRequest() throws Exception {
- vnfRollback.getMsoRequest();
- }
-
- @Test
- public void setMsoRequest() throws Exception {
- vnfRollback.setMsoRequest(new MsoRequest());
- }
-
- @Test
- public void getVolumeGroupName() throws Exception {
- vnfRollback.getVolumeGroupName();
- }
-
- @Test
- public void setVolumeGroupName() throws Exception {
- vnfRollback.setVolumeGroupName("test");
- }
-
- @Test
- public void getVolumeGroupId() throws Exception {
- vnfRollback.getVolumeGroupId();
- }
-
- @Test
- public void setVolumeGroupId() throws Exception {
- vnfRollback.setVolumeGroupId("test");
- }
-
- @Test
- public void getRequestType() throws Exception {
- vnfRollback.getRequestType();
- }
-
- @Test
- public void setRequestType() throws Exception {
- vnfRollback.setRequestType("test");
- }
-
- @Test
- public void getVolumeGroupHeatStackId() throws Exception {
- vnfRollback.getVolumeGroupHeatStackId();
- }
-
- @Test
- public void setVolumeGroupHeatStackId() throws Exception {
- vnfRollback.setVolumeGroupHeatStackId("test");
- }
-
- @Test
- public void getBaseGroupHeatStackId() throws Exception {
- vnfRollback.getBaseGroupHeatStackId();
- }
-
- @Test
- public void setBaseGroupHeatStackId() throws Exception {
- vnfRollback.setBaseGroupHeatStackId("test");
- }
-
- @Test
- public void isBase() throws Exception {
- vnfRollback.isBase();
- }
-
- @Test
- public void setIsBase() throws Exception {
- vnfRollback.setIsBase(true);
- }
-
- @Test
- public void getVfModuleStackId() throws Exception {
- vnfRollback.getVfModuleStackId();
- }
-
- @Test
- public void setVfModuleStackId() throws Exception {
- vnfRollback.setVfModuleStackId("test");
- }
-
- @Test
- public void getModelCustomizationUuid() throws Exception {
- vnfRollback.getModelCustomizationUuid();
- }
-
- @Test
- public void setModelCustomizationUuid() throws Exception {
- vnfRollback.setModelCustomizationUuid("test");
- }
-
- @Test
- public void getMode() throws Exception {
- vnfRollback.getMode();
- }
-
- @Test
- public void setMode() throws Exception {
- vnfRollback.setMode("test");
- }
-
-} \ No newline at end of file