b84a8948af771bf03ec419acb9a07908e87cea2f
[appc.git] /
1 /*
2 * ============LICENSE_START=======================================================
3 * ONAP : APPC
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
10 *
11 *     http://www.apache.org/licenses/LICENSE-2.0
12 *
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=========================================================
19 */
20 package org.onap.appc.dg.common.objects;
21
22 import static org.junit.Assert.*;
23
24 import org.junit.Before;
25 import org.junit.Test;
26
27 public class TestConnectionDetails {
28
29     private ConnectionDetails connectionDetails;
30
31     @Before
32     public void setUp() {
33         connectionDetails = new ConnectionDetails();
34     }
35
36     @Test
37     public void testGetHost() {
38         connectionDetails.setHost("host");
39         assertNotNull(connectionDetails.getHost());
40         assertEquals(connectionDetails.getHost(), "host");
41     }
42
43     @Test
44     public void testGetPort() {
45         connectionDetails.setPort(8080);
46         assertNotNull(connectionDetails.getPort());
47         assertEquals(connectionDetails.getPort(), 8080);
48     }
49
50     @Test
51     public void testGetUsername() {
52         connectionDetails.setUsername("username");
53         assertNotNull(connectionDetails.getUsername());
54         assertEquals(connectionDetails.getUsername(), "username");
55     }
56
57     @Test
58     public void testGetPassword() {
59         connectionDetails.setPassword("password");
60         assertNotNull(connectionDetails.getPassword());
61         assertEquals(connectionDetails.getPassword(), "password");
62     }
63 }