1 2 17 18 package org.apache.poi.hssf.record.aggregates; 19 20 import org.apache.poi.hssf.record.*; 21 22 public class TestRowRecordsAggregate extends junit.framework.TestCase { 23 public TestRowRecordsAggregate(String name) { 24 super (name); 25 } 26 27 public void testRowGet() { 28 RowRecordsAggregate rra = new RowRecordsAggregate(); 29 RowRecord rr = new RowRecord(); 30 rr.setRowNumber(( short ) 4); 31 rra.insertRow(rr); 32 RowRecord rr2 = new RowRecord(); rr2.setRowNumber((short) 1); 33 rra.insertRow(rr2); 34 35 RowRecord rr1 = rra.getRow(4); 36 37 assertTrue("Row Record should not be null", rr1!=null); 38 assertTrue("Row number is 1",rr1.getRowNumber() == 4); 39 assertTrue("Row record retrieved is identical ", rr1 == rr); 40 } 41 42 public static void main(String [] args) { 43 System.out 44 .println("Testing org.apache.poi.hssf.record.aggregates.RowRecordAggregate"); 45 junit.textui.TestRunner.run(TestRowRecordsAggregate.class); 46 } 47 } 48 | Popular Tags |