Skip to content

Commit

Permalink
LANG-1695: added test for special case
Browse files Browse the repository at this point in the history
  • Loading branch information
orionlibs committed Jul 28, 2023
1 parent 95d410d commit 78695e1
Showing 1 changed file with 1 addition and 0 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -919,6 +919,7 @@ public void testIsParsable() {
assertFalse(NumberUtils.isParsable("64, 2"));
assertFalse(NumberUtils.isParsable("64.2.2"));
assertTrue(NumberUtils.isParsable("64."));
assertFalse(NumberUtils.isParsable("64.."));
assertTrue(NumberUtils.isParsable("-64."));
assertFalse(NumberUtils.isParsable("64L"));
assertFalse(NumberUtils.isParsable("-"));
Expand Down

0 comments on commit 78695e1

Please sign in to comment.