392ace692115536062209ed2dbc5eeb6a310f216
[vfc/nfvo/driver/sfc.git] / zte / sfc-driver / sfc-driver / src / test / java / org / onap / sfc / entity / NodeEntityTest.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 NodeEntityTest {
22     NodeEntity entity1;
23     NodeEntity entity2;
24
25     @Before
26     public void setUp() throws Exception {
27         entity1 = new NodeEntity();
28         entity1.setIp("");
29         entity1.setPort("");
30         entity1.setTtl("");
31
32         entity2 = new NodeEntity();
33         entity2.setIp("");
34         entity2.setPort("");
35         entity2.setTtl("");
36     }
37
38     @Test
39     public void test() throws Exception {
40         assert entity2.getIp().equals(entity1.getIp());
41         assert entity2.getPort().equals(entity1.getPort());
42         assert entity2.getTtl().equals(entity1.getTtl());
43     }
44
45     @Test
46     public void equals() throws Exception {
47         assert !entity2.equals(entity1);
48         assert entity2.equals(entity2);
49         assert entity2.hashCode() == entity2.hashCode();
50         assert entity2.hashCode() != entity1.hashCode();
51     }
52
53     @Test
54     public void toStringTest() throws Exception {
55         assert entity2.toString() != null;
56     }
57
58 }