@Test public void readPartial() throws FIXValueOverflowException { assertEquals(false, value.get(ByteBuffers.wrap("foo"))); }
private void get(String s) throws FIXValueOverflowException { value.get(ByteBuffers.wrap(s)); }
@Test public void readOverflow() throws FIXValueOverflowException { exception.expect(FIXValueOverflowException.class); value.get(ByteBuffers.wrap("aaaaaaaaaaaaaaaaaaaaaaaaaaaaaaaa")); }