Slice tupleSlice = tuple.getTupleSlice();
assertEquals(tupleSlice.length(), binary.length() + SIZE_OF_INT + SIZE_OF_BYTE);
// null bit set is in first byte
assertEquals(tupleSlice.getByte(0), 0);
assertEquals(tupleSlice.getInt(SIZE_OF_BYTE), binary.length() + SIZE_OF_INT + SIZE_OF_BYTE);
assertEquals(tupleSlice.slice(SIZE_OF_INT + SIZE_OF_BYTE, binary.length()), binary);
}
@Test
public void testSingleVariableLengthNull()
{