summaryrefslogtreecommitdiffstats
path: root/zte/sfc-driver/sfc-driver/src/test/java/org/onap/sfc/entity/portpair/PortInfoTest.java
diff options
context:
space:
mode:
authorsonicke <10112215@zte.com.cn>2019-02-26 16:18:32 +0800
committersonicke <10112215@zte.com.cn>2019-02-26 16:18:32 +0800
commit51814384b801b5479582cc190065a44e9c866279 (patch)
tree2848f20aaf54fae17a3dff3e46f135bf4fe318ed /zte/sfc-driver/sfc-driver/src/test/java/org/onap/sfc/entity/portpair/PortInfoTest.java
parent77dddd871421b1de8d92dd76e2a1b237cb00b50f (diff)
override hashCode for sonar
Issue-ID: VFC-1264 Change-Id: I0881451ead3bf6c8e5e5c04781ea8d0cb6869081 Signed-off-by: Zhuoyao Huang <10112215@zte.com.cn>
Diffstat (limited to 'zte/sfc-driver/sfc-driver/src/test/java/org/onap/sfc/entity/portpair/PortInfoTest.java')
-rw-r--r--zte/sfc-driver/sfc-driver/src/test/java/org/onap/sfc/entity/portpair/PortInfoTest.java2
1 files changed, 2 insertions, 0 deletions
diff --git a/zte/sfc-driver/sfc-driver/src/test/java/org/onap/sfc/entity/portpair/PortInfoTest.java b/zte/sfc-driver/sfc-driver/src/test/java/org/onap/sfc/entity/portpair/PortInfoTest.java
index 7d20b5c..9093d98 100644
--- a/zte/sfc-driver/sfc-driver/src/test/java/org/onap/sfc/entity/portpair/PortInfoTest.java
+++ b/zte/sfc-driver/sfc-driver/src/test/java/org/onap/sfc/entity/portpair/PortInfoTest.java
@@ -49,6 +49,8 @@ public class PortInfoTest {
public void equals() throws Exception {
assert !portInfo2.equals(portInfo1);
assert portInfo2.equals(portInfo2);
+ assert portInfo2.hashCode() == portInfo2.hashCode();
+ assert portInfo2.hashCode() != portInfo1.hashCode();
}
@Test