FileDocCategorySizeDatePackage
TestSeriesToChartGroupRecord.javaAPI DocApache Poi 3.0.12221Mon Jan 01 12:39:46 GMT 2007org.apache.poi.hssf.record

TestSeriesToChartGroupRecord

public class TestSeriesToChartGroupRecord extends TestCase
Tests the serialization and deserialization of the SeriesToChartGroupRecord class works correctly. Test data taken directly from a real Excel file.
author
Andrew C. Oliver (acoliver at apache.org)

Fields Summary
byte[]
data
Constructors Summary
public TestSeriesToChartGroupRecord(String name)


      
    
        super(name);
    
Methods Summary
public voidtestLoad()

        SeriesToChartGroupRecord record = new SeriesToChartGroupRecord(new TestcaseRecordInputStream((short)0x1045, (short)data.length, data));
        assertEquals( 0x0, record.getChartGroupIndex());


        assertEquals( 0x6, record.getRecordSize() );

        record.validateSid((short)0x1045);
    
public voidtestStore()

        SeriesToChartGroupRecord record = new SeriesToChartGroupRecord();
        record.setChartGroupIndex( (short)0x0 );


        byte [] recordBytes = record.serialize();
        assertEquals(recordBytes.length - 4, data.length);
        for (int i = 0; i < data.length; i++)
            assertEquals("At offset " + i, data[i], recordBytes[i+4]);