Fixed
Details
Assignee
UnassignedUnassignedReporter
Xavier SosnovskyXavier SosnovskyBug Testcase Reminder (view)
Bug reports should generally be accompanied by a test case!
Bug Testcase Reminder (edit)
Bug reports should generally be accompanied by a test case!
Participants
Xavier SosnovskyComponents
Fix versions
Affects versions
Priority
Minor
Details
Details
Assignee
Unassigned
UnassignedReporter
Xavier Sosnovsky
Xavier SosnovskyBug Testcase Reminder (view)
Bug reports should generally be accompanied by a test case!
Bug Testcase Reminder (edit)
Bug reports should generally be accompanied by a test case!
Participants
Xavier Sosnovsky
Components
Fix versions
Affects versions
Priority
Created September 17, 2014 at 7:59 PM
Updated October 22, 2014 at 2:50 PM
Resolved October 2, 2014 at 10:35 AM
I have the following validation rules defined in an interface:
In my tests, I also pass unexpected values such as
Double.NAN
orDouble.POSITIVE_INFINITY
.This triggers an exception:
The exception is caused by the call to
BigDecimal.valueOf(double val)
inorg.hibernate.validator.internal.constraintvalidators.bv.DecimalMaxValidatorForNumber
, which throws an exception if val is infinite or NaN.The issue can be reproduced using the attached project.