Add Junit for ConnectionDetails class 41/36041/3
authorNeha Sood <ns189k@att.com>
Thu, 15 Mar 2018 16:29:36 +0000 (12:29 -0400)
committerTakamune Cho <tc012c@att.com>
Thu, 15 Mar 2018 18:56:03 +0000 (18:56 +0000)
Change-Id: Ie0c7348583d6e99397374602c0b2cb804cda8d85
Issue-ID: APPC-734
Signed-off-by: Neha Sood <ns189k@att.com>
appc-adapters/appc-netconf-adapter/appc-netconf-adapter-bundle/src/test/java/org/onap/appc/adapter/netconf/TestConnectionDetails.java [new file with mode: 0644]

diff --git a/appc-adapters/appc-netconf-adapter/appc-netconf-adapter-bundle/src/test/java/org/onap/appc/adapter/netconf/TestConnectionDetails.java b/appc-adapters/appc-netconf-adapter/appc-netconf-adapter-bundle/src/test/java/org/onap/appc/adapter/netconf/TestConnectionDetails.java
new file mode 100644 (file)
index 0000000..b9e3ca4
--- /dev/null
@@ -0,0 +1,47 @@
+/*-\r
+ * ============LICENSE_START=======================================================\r
+ * ONAP : APPC\r
+ * ================================================================================\r
+ * Copyright (C) 2018 AT&T Intellectual Property. All rights reserved.\r
+ * ================================================================================\r
+ * Licensed under the Apache License, Version 2.0 (the "License");\r
+ * you may not use this file except in compliance with the License.\r
+ * You may obtain a copy of the License at\r
+ * \r
+ *      http://www.apache.org/licenses/LICENSE-2.0\r
+ * \r
+ * Unless required by applicable law or agreed to in writing, software\r
+ * distributed under the License is distributed on an "AS IS" BASIS,\r
+ * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.\r
+ * See the License for the specific language governing permissions and\r
+ * limitations under the License.\r
+ * \r
+ * ECOMP is a trademark and service mark of AT&T Intellectual Property.\r
+ * ============LICENSE_END=========================================================\r
+ */\r
+\r
+package org.onap.appc.adapter.netconf;\r
+\r
+import static org.junit.Assert.assertEquals;\r
+\r
+import org.junit.Test;\r
+\r
+public class TestConnectionDetails {\r
+\r
+    @Test\r
+    public void testGetSetMethods() {\r
+        ConnectionDetails connectionDetails = new ConnectionDetails();\r
+        connectionDetails.setHost("host1");\r
+        assertEquals("host1", connectionDetails.getHost());\r
+\r
+        connectionDetails.setPort(123);\r
+        assertEquals(123, connectionDetails.getPort());\r
+\r
+        connectionDetails.setUsername("myname");\r
+        assertEquals("myname", connectionDetails.getUsername());\r
+\r
+        connectionDetails.setPassword("mypassword");\r
+        assertEquals("mypassword", connectionDetails.getPassword());\r
+    }\r
+\r
+}\r