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

TestAxisLineFormatRecord

public class TestAxisLineFormatRecord extends TestCase
Tests the serialization and deserialization of the AxisLineFormatRecord class works correctly. Test data taken directly from a real Excel file.
author
Glen Stampoultzis (glens at apache.org)

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


      
    
        super(name);
    
Methods Summary
public voidtestLoad()

        AxisLineFormatRecord record = new AxisLineFormatRecord(new TestcaseRecordInputStream((short)0x1021, (short)data.length, data));
        assertEquals( AxisLineFormatRecord.AXIS_TYPE_MAJOR_GRID_LINE, record.getAxisType());


        assertEquals( 6, record.getRecordSize() );

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

        AxisLineFormatRecord record = new AxisLineFormatRecord();
        record.setAxisType( AxisLineFormatRecord.AXIS_TYPE_MAJOR_GRID_LINE );


        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]);