The following tests were updated recently to add fail() calls, but the IAE is not generated.
Anyone have an idea how to fix the tests so the IAE is thrown? public void testSolveBadEndpoints() throws MathException { try { // bad endpoints UnivariateRealSolverUtils.solve(sin,0.0, 4.0, 4.0); fail("Expecting IllegalArgumentException"); } catch (IllegalArgumentException ex) { // expected } } public void testSolveBadAccuracy() throws MathException { try { // bad accuracy UnivariateRealSolverUtils.solve(sin, 0.0, 4.0, 0.0); fail("Expecting IllegalArgumentException"); } catch (IllegalArgumentException ex) { // expected } } --------------------------------------------------------------------- To unsubscribe, e-mail: dev-unsubscr...@commons.apache.org For additional commands, e-mail: dev-h...@commons.apache.org