Skip to content

Commit 73877df

Browse files
bug, more details see test case
1 parent eb580aa commit 73877df

File tree

1 file changed

+9
-0
lines changed

1 file changed

+9
-0
lines changed

quickfixj-core/src/test/java/quickfix/FieldConvertersTest.java

+9
Original file line numberDiff line numberDiff line change
@@ -59,6 +59,15 @@ public void testIntegerConversion() throws Exception {
5959
} catch (FieldConvertError e) {
6060
// expected
6161
}
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+
}
6271
}
6372

6473
public void testDoubleConversion() throws Exception {

0 commit comments

Comments
 (0)