2 * ============LICENSE_START=======================================================
4 * ================================================================================
5 * Copyright 2018 TechMahindra
6 *=================================================================================
7 * Licensed under the Apache License, Version 2.0 (the "License");
8 * you may not use this file except in compliance with the License.
9 * You may obtain a copy of the License at
11 * http://www.apache.org/licenses/LICENSE-2.0
13 * Unless required by applicable law or agreed to in writing, software
14 * distributed under the License is distributed on an "AS IS" BASIS,
15 * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
16 * See the License for the specific language governing permissions and
17 * limitations under the License.
18 * ============LICENSE_END=========================================================
20 package org.onap.appc.dg.common.objects;
22 import static org.junit.Assert.*;
24 import org.junit.Before;
25 import org.junit.Test;
27 public class TestConnectionDetails {
29 private ConnectionDetails connectionDetails;
33 connectionDetails = new ConnectionDetails();
37 public void testGetHost() {
38 connectionDetails.setHost("host");
39 assertNotNull(connectionDetails.getHost());
40 assertEquals(connectionDetails.getHost(), "host");
44 public void testGetPort() {
45 connectionDetails.setPort(8080);
46 assertNotNull(connectionDetails.getPort());
47 assertEquals(connectionDetails.getPort(), 8080);
51 public void testGetUsername() {
52 connectionDetails.setUsername("username");
53 assertNotNull(connectionDetails.getUsername());
54 assertEquals(connectionDetails.getUsername(), "username");
58 public void testGetPassword() {
59 connectionDetails.setPassword("password");
60 assertNotNull(connectionDetails.getPassword());
61 assertEquals(connectionDetails.getPassword(), "password");