diff options
author | Yegor Kozlov <yegor@apache.org> | 2007-03-12 15:43:14 +0000 |
---|---|---|
committer | Yegor Kozlov <yegor@apache.org> | 2007-03-12 15:43:14 +0000 |
commit | bdf4ab73d0f881f7604a437c8224267691534b85 (patch) | |
tree | 103bec89274b7db2322a24cc1815b41a2a502704 /src/testcases | |
parent | da9a6807d6650f637629bec1f471f5cff313047c (diff) | |
download | poi-bdf4ab73d0f881f7604a437c8224267691534b85.tar.gz poi-bdf4ab73d0f881f7604a437c8224267691534b85.zip |
improved work with cell comments
git-svn-id: https://svn.apache.org/repos/asf/jakarta/poi/trunk@517261 13f79535-47bb-0310-9956-ffa450edef68
Diffstat (limited to 'src/testcases')
-rw-r--r-- | src/testcases/org/apache/poi/hssf/usermodel/TestHSSFComment.java | 3 |
1 files changed, 3 insertions, 0 deletions
diff --git a/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFComment.java b/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFComment.java index 918d1f8130..f1f1882732 100644 --- a/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFComment.java +++ b/src/testcases/org/apache/poi/hssf/usermodel/TestHSSFComment.java @@ -101,6 +101,7 @@ public class TestHSSFComment extends TestCase { cell = row.getCell((short)0); comment = cell.getCellComment(); assertNull("Cells in the first column are not commented", comment); + assertNull(sheet.getCellComment(rownum, 0)); } for (int rownum = 0; rownum < 3; rownum++) { @@ -108,6 +109,8 @@ public class TestHSSFComment extends TestCase { cell = row.getCell((short)1); comment = cell.getCellComment(); assertNotNull("Cells in the second column have comments", comment); + assertNotNull("Cells in the second column have comments", sheet.getCellComment(rownum, 1)); + assertEquals(HSSFSimpleShape.OBJECT_TYPE_COMMENT, comment.getShapeType()); assertEquals("Yegor Kozlov", comment.getAuthor()); assertFalse("cells in the second column have not empyy notes", |