private void assertPutEquals(String s) { ByteBuffer buffer = ByteBuffer.allocate(s.length()); value.put(buffer); buffer.flip(); assertEquals(s, ByteBuffers.getString(buffer)); }
@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")); }