We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
1 parent eb580aa commit 73877dfCopy full SHA for 73877df
quickfixj-core/src/test/java/quickfix/FieldConvertersTest.java
@@ -59,6 +59,15 @@ public void testIntegerConversion() throws Exception {
59
} catch (FieldConvertError e) {
60
// expected
61
}
62
+
63
+ try {
64
+ //Sequence of digits without commas or decimals and optional sign character (ASCII characters "-" and "0" - "9" ).
65
+ //FIXME
66
+ IntConverter.convert("100");
67
+ fail();
68
+ } catch (FieldConvertError e) {
69
+ // expected
70
+ }
71
72
73
public void testDoubleConversion() throws Exception {
0 commit comments