@Test public void notChar() { value.setString("FOO"); exception.expect(FIXValueFormatException.class); value.asChar(); }
@Test public void asChar() throws FIXValueOverflowException { get("Y\u0001"); assertEquals('Y', value.asChar()); }