From: Sandeep J Date: Tue, 19 Mar 2019 08:22:55 +0000 (+0530) Subject: added file to test VServerInfo.java X-Git-Tag: 1.5.0~69 X-Git-Url: https://gerrit.onap.org/r/gitweb?a=commitdiff_plain;h=refs%2Fchanges%2F41%2F82641%2F2;p=appc.git added file to test VServerInfo.java to increase code coverage Issue-ID: APPC-1086 Change-Id: Id430a90d0a186c9a065f514efd316af300f690a0 Signed-off-by: Sandeep J --- diff --git a/appc-outbound/appc-aai-client/provider/src/test/java/org/onap/appc/aai/client/aai/TestVServerInfo.java b/appc-outbound/appc-aai-client/provider/src/test/java/org/onap/appc/aai/client/aai/TestVServerInfo.java new file mode 100644 index 000000000..879eb9d61 --- /dev/null +++ b/appc-outbound/appc-aai-client/provider/src/test/java/org/onap/appc/aai/client/aai/TestVServerInfo.java @@ -0,0 +1,66 @@ +/*- + * ============LICENSE_START======================================================= + * ONAP : APPC + * ================================================================================ + * Copyright (C) 2019 IBM. + * ================================================================================ + * 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.onap.appc.aai.client.aai; + +import static org.junit.Assert.assertEquals; + +import java.util.HashMap; +import java.util.Map; + +import org.junit.Before; +import org.junit.Test; + +public class TestVServerInfo { + + VServerInfo vServerInfo; + + @Before + public void setUp() throws MissingParameterException { + Map params = new HashMap<>(); + params.put("vserverId", "testVserverId"); + params.put("tenantId", "testTenantId"); + params.put("cloudOwner", "testCloudOwner"); + params.put("cloudRegionId", "testCloudRegionId"); + vServerInfo = new VServerInfo(params); + } + + @Test + public void testVserverId() { + assertEquals("testVserverId", vServerInfo.getVserverId()); + } + + @Test + public void testTenantId() { + assertEquals("testTenantId", vServerInfo.getTenantId()); + } + + @Test + public void testCloudOwner() { + assertEquals("testCloudOwner", vServerInfo.getCloudOwner()); + } + + @Test + public void testCloudRegionId() { + assertEquals("testCloudRegionId", vServerInfo.getCloudRegionId()); + } + +}