mirror of https://github.com/apache/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
This commit is contained in:
parent
3984215fbd
commit
3f4d479b13
|
@ -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();
|
||||
}
|
||||
|
|
Loading…
Reference in New Issue