0937b20a4db3aee7dcb18dec1fe9b38115893575
[vfc/nfvo/driver/sfc.git] / zte / sfc-driver / sfc-driver / src / test / java / org / onap / sfc / entity / SdnControllerInfoTest.java
1 package org.onap.sfc.entity;
2
3 import org.junit.Before;
4 import org.junit.Test;
5
6 /**
7  * Copyright 2018 ZTE Corporation.
8  * <p>
9  * Licensed under the Apache License, Version 2.0 (the "License");
10  * you may not use this file except in compliance with the License.
11  * You may obtain a copy of the License at
12  * <p>
13  * http://www.apache.org/licenses/LICENSE-2.0
14  * <p>
15  * Unless required by applicable law or agreed to in writing, software
16  * distributed under the License is distributed on an "AS IS" BASIS,
17  * WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
18  * See the License for the specific language governing permissions and
19  * limitations under the License.
20  */
21 public class SdnControllerInfoTest {
22     SdnControllerInfo entity1;
23     SdnControllerInfo entity2;
24
25     @Before
26     public void setUp() throws Exception {
27         entity1 = new SdnControllerInfo();
28         entity1.setPassword("");
29         entity1.setUrl("");
30         entity1.setUserName("");
31
32         entity2 = new SdnControllerInfo();
33         entity2.setPassword("");
34         entity2.setUrl("");
35         entity2.setUserName("");
36     }
37
38     @Test
39     public void test() throws Exception {
40         assert entity2.getPassword().equals(entity1.getPassword());
41         assert entity2.getUrl().equals(entity1.getUrl());
42         assert entity2.getUserName().equals(entity1.getUserName());
43     }
44
45     @Test
46     public void equals() throws Exception {
47         assert !entity2.equals(entity1);
48         assert entity2.equals(entity2);
49     }
50
51     @Test
52     public void toStringTest() throws Exception {
53         assert entity2.toString() != null;
54     }
55
56 }