From d273922725ebed244d8ba6458dee68487f260de5 Mon Sep 17 00:00:00 2001 From: Neha Sood Date: Thu, 15 Mar 2018 12:29:36 -0400 Subject: Add Junit for ConnectionDetails class Change-Id: Ie0c7348583d6e99397374602c0b2cb804cda8d85 Issue-ID: APPC-734 Signed-off-by: Neha Sood --- .../adapter/netconf/TestConnectionDetails.java | 47 ++++++++++++++++++++++ 1 file changed, 47 insertions(+) create mode 100644 appc-adapters/appc-netconf-adapter/appc-netconf-adapter-bundle/src/test/java/org/onap/appc/adapter/netconf/TestConnectionDetails.java (limited to 'appc-adapters/appc-netconf-adapter') 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 index 000000000..b9e3ca4c0 --- /dev/null +++ b/appc-adapters/appc-netconf-adapter/appc-netconf-adapter-bundle/src/test/java/org/onap/appc/adapter/netconf/TestConnectionDetails.java @@ -0,0 +1,47 @@ +/*- + * ============LICENSE_START======================================================= + * ONAP : APPC + * ================================================================================ + * Copyright (C) 2018 AT&T Intellectual Property. 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. + * + * ECOMP is a trademark and service mark of AT&T Intellectual Property. + * ============LICENSE_END========================================================= + */ + +package org.onap.appc.adapter.netconf; + +import static org.junit.Assert.assertEquals; + +import org.junit.Test; + +public class TestConnectionDetails { + + @Test + public void testGetSetMethods() { + ConnectionDetails connectionDetails = new ConnectionDetails(); + connectionDetails.setHost("host1"); + assertEquals("host1", connectionDetails.getHost()); + + connectionDetails.setPort(123); + assertEquals(123, connectionDetails.getPort()); + + connectionDetails.setUsername("myname"); + assertEquals("myname", connectionDetails.getUsername()); + + connectionDetails.setPassword("mypassword"); + assertEquals("mypassword", connectionDetails.getPassword()); + } + +} -- cgit 1.2.3-korg