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:
Javen O'Neal 2016-06-17 10:17:47 +00:00
parent 19a0cc12fa
commit 645fbd08fc
1 changed files with 4 additions and 0 deletions

View File

@ -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();
}