From: Javen O'Neal Date: Fri, 17 Jun 2016 10:17:47 +0000 (+0000) Subject: bug 59279: add unit test for CellComment.equals and CellComment.hashCode X-Git-Tag: REL_3_15_BETA2~66 X-Git-Url: https://source.dussan.org/?a=commitdiff_plain;h=3f4d479b1379e76c4bc2788be24694cc63214309;p=poi.git bug 59279: add unit test for CellComment.equals and CellComment.hashCode git-svn-id: https://svn.apache.org/repos/asf/poi/trunk@1748827 13f79535-47bb-0310-9956-ffa450edef68 --- diff --git a/src/testcases/org/apache/poi/ss/usermodel/BaseTestCellComment.java b/src/testcases/org/apache/poi/ss/usermodel/BaseTestCellComment.java index dc11e6cb5f..17de8cf4a9 100644 --- a/src/testcases/org/apache/poi/ss/usermodel/BaseTestCellComment.java +++ b/src/testcases/org/apache/poi/ss/usermodel/BaseTestCellComment.java @@ -131,6 +131,10 @@ public abstract class BaseTestCellComment { assertEquals(cellRow, comment.getRow()); assertEquals(cellColumn, comment.getColumn()); assertFalse(comment.isVisible()); + + // Test Comment.equals and Comment.hashCode + assertEquals(comment, cell.getCellComment()); + assertEquals(comment.hashCode(), cell.getCellComment().hashCode()); wb3.close(); }