List of usage examples for org.apache.poi.hssf.record DConRefRecord getSid
@Override
public short getSid()
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); }