KickJava   Java API By Example, From Geeks To Geeks.

Java > Open Source Codes > org > apache > poi > hssf > record > aggregates > TestRowRecordsAggregate


1
2 /* ====================================================================
3    Copyright 2002-2004 Apache Software Foundation
4
5    Licensed under the Apache License, Version 2.0 (the "License");
6    you may not use this file except in compliance with the License.
7    You may obtain a copy of the License at
8
9        http://www.apache.org/licenses/LICENSE-2.0
10
11    Unless required by applicable law or agreed to in writing, software
12    distributed under the License is distributed on an "AS IS" BASIS,
13    WITHOUT WARRANTIES OR CONDITIONS OF ANY KIND, either express or implied.
14    See the License for the specific language governing permissions and
15    limitations under the License.
16 ==================================================================== */

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 JavaDoc 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 JavaDoc [] 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