Example usage for org.apache.poi.hssf.record DConRefRecord getSid

List of usage examples for org.apache.poi.hssf.record DConRefRecord getSid

Introduction

In this page you can find the example usage for org.apache.poi.hssf.record DConRefRecord getSid.

Prototype

@Override
    public short getSid() 

Source Link

Usage

From source file:org.ddt.listener.records.DConRefRecordTest.java

License:Apache License

/**
 * Test of getSid method, of class DConRefRecord.
 *//*from w ww. j a va2s  .c  om*/
@Test
public void testGetSid() {
    DConRefRecord instance = new DConRefRecord(TestcaseRecordInputStream.create(81, data1));
    short expResult = 81;
    short result = instance.getSid();
    assertEquals("SID", expResult, result);
}