| org.apache.poi.hssf.usermodel.TestUnfixedBugs
TestUnfixedBugs | public class TestUnfixedBugs extends TestCase (Code) | | author: aviks author: This testcase contains tests for bugs that are yet to be fixed. author: Therefore, the standard ant test target does not run these tests. author: Run this testcase with the single-test target. author: The names of the tests usually correspond to the Bugzilla id's author: PLEASE MOVE tests from this class to TestBugs once the bugs are fixed, author: so that they are then run automatically. |
Method Summary | |
public void | test28772() | public void | test37684() | public void | test41139() Bug 41139: Constructing HSSFWorkbook is failed,threw threw ArrayIndexOutOfBoundsException for creating UnknownRecord
BUT NOW (Jan07): It throws the following in write!!
java.lang.RuntimeException: Coding Error: This method should never be called. |
test37684 | public void test37684() throws Exception(Code) | | Bug 37684: Unhandled Continue Record Error
BUT NOW(Jan07): It triggers bug 41026!!
java.lang.ArrayIndexOutOfBoundsException: 30
at org.apache.poi.hssf.record.aggregates.ValueRecordsAggregate.rowHasCells(ValueRecordsAggregate.java:219)
|
test41139 | public void test41139() throws Exception(Code) | | Bug 41139: Constructing HSSFWorkbook is failed,threw threw ArrayIndexOutOfBoundsException for creating UnknownRecord
BUT NOW (Jan07): It throws the following in write!!
java.lang.RuntimeException: Coding Error: This method should never be called. This ptg should be converted
at org.apache.poi.hssf.record.formula.AreaNPtg.writeBytes(AreaNPtg.java:54)
at org.apache.poi.hssf.record.formula.Ptg.serializePtgStack(Ptg.java:384)
at org.apache.poi.hssf.record.NameRecord.serialize(NameRecord.java:544)
at org.apache.poi.hssf.model.Workbook.serialize(Workbook.java:757)
at org.apache.poi.hssf.usermodel.HSSFWorkbook.getBytes(HSSFWorkbook.java:952)
at org.apache.poi.hssf.usermodel.HSSFWorkbook.write(HSSFWorkbook.java:898)
|
|
|