Beispiel #1
0
        public void testMCTable_bug46009()
        {
            MergedCellsTable mct = new MergedCellsTable();
            ArrayList recList = new ArrayList();
            CellRangeAddress[] cras = new CellRangeAddress[] {
				new CellRangeAddress(0, 0, 0, 3), 
		};
            recList.Add(new MergeCellsRecord(cras, 0, 1));
            RecordStream rs = new RecordStream(recList, 0);
            mct.Read(rs);
            try
            {
                mct.VisitContainedRecords(dummyRecordVisitor);
            }
            catch (Exception)
            {
                throw new AssertionException("Identified bug 46009");
            }
        }