Unit Test Coverage for ConnectionDetails.java 59/35059/2
authoramshegokar <AS00500801@techmahindra.com>
Sun, 11 Mar 2018 13:47:42 +0000 (19:17 +0530)
committerTakamune Cho <tc012c@att.com>
Mon, 12 Mar 2018 00:12:55 +0000 (00:12 +0000)
Unit Test Coverage for ConnectionDetails.java
Sonar-Link:
https://sonar.onap.org/code?id=org.onap.appc%3Aappc&selected=org.onap.appc%3Aappc-dg-common%3Asrc%2Fmain%2Fjava%2Forg%2Fonap%2Fappc%2Fdg%2Fcommon%2Fobjects%2FConnectionDetails.java

Change-Id: Ia253f7cea39d980f966f0afc5ab1b64d1e3f527e
Issue-ID: APPC-718
Signed-off-by: amshegokar <AS00500801@techmahindra.com>
appc-dg/appc-dg-shared/appc-dg-common/src/test/java/org/onap/appc/dg/common/objects/TestConnectionDetails.java [new file with mode: 0644]

diff --git a/appc-dg/appc-dg-shared/appc-dg-common/src/test/java/org/onap/appc/dg/common/objects/TestConnectionDetails.java b/appc-dg/appc-dg-shared/appc-dg-common/src/test/java/org/onap/appc/dg/common/objects/TestConnectionDetails.java
new file mode 100644 (file)
index 0000000..b84a894
--- /dev/null
@@ -0,0 +1,63 @@
+/*
+* ============LICENSE_START=======================================================
+* ONAP : APPC
+* ================================================================================
+* Copyright 2018 TechMahindra
+*=================================================================================
+* 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.dg.common.objects;
+
+import static org.junit.Assert.*;
+
+import org.junit.Before;
+import org.junit.Test;
+
+public class TestConnectionDetails {
+
+    private ConnectionDetails connectionDetails;
+
+    @Before
+    public void setUp() {
+        connectionDetails = new ConnectionDetails();
+    }
+
+    @Test
+    public void testGetHost() {
+        connectionDetails.setHost("host");
+        assertNotNull(connectionDetails.getHost());
+        assertEquals(connectionDetails.getHost(), "host");
+    }
+
+    @Test
+    public void testGetPort() {
+        connectionDetails.setPort(8080);
+        assertNotNull(connectionDetails.getPort());
+        assertEquals(connectionDetails.getPort(), 8080);
+    }
+
+    @Test
+    public void testGetUsername() {
+        connectionDetails.setUsername("username");
+        assertNotNull(connectionDetails.getUsername());
+        assertEquals(connectionDetails.getUsername(), "username");
+    }
+
+    @Test
+    public void testGetPassword() {
+        connectionDetails.setPassword("password");
+        assertNotNull(connectionDetails.getPassword());
+        assertEquals(connectionDetails.getPassword(), "password");
+    }
+}