MATH-488
Removed last occurrences of "MathException" (appearing as a string and in a commented-out unit test. git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1243466 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
parent
d2734aae66
commit
d429505103
|
@ -52,6 +52,9 @@ The <action> type attribute can be add,update,fix,remove.
|
|||
If the output is not quite correct, check for invisible trailing spaces!
|
||||
-->
|
||||
<release version="3.0" date="TBD" description="TBD">
|
||||
<action dev="erans" type="update" issue="MATH-459">
|
||||
Removed "MathRuntimeException" (from package "o.a.c.math").
|
||||
</action>
|
||||
<action dev="tn" type="fix" issue="MATH-739">
|
||||
Merged interface and implementation of statistical tests in
|
||||
o.a.c.m.stat.inference package.
|
||||
|
|
|
@ -714,7 +714,7 @@ public class MillerUpdatingRegressionTest {
|
|||
}
|
||||
|
||||
// @Test
|
||||
// public void testRegressReorder() throws MathException {
|
||||
// public void testRegressReorder() {
|
||||
// // System.out.println("testRegressReorder");
|
||||
// MillerUpdatingRegression instance = new MillerUpdatingRegression(4, false);
|
||||
// double[][] x = new double[airdata[0].length][];
|
||||
|
|
|
@ -91,16 +91,11 @@ public class DefaultTransformerTest {
|
|||
/**
|
||||
*
|
||||
*/
|
||||
@Test
|
||||
@Test(expected=MathIllegalArgumentException.class)
|
||||
public void testTransformObject(){
|
||||
Boolean input = Boolean.TRUE;
|
||||
DefaultTransformer t = new DefaultTransformer();
|
||||
try {
|
||||
t.transform(input);
|
||||
Assert.fail("Expecting MathException");
|
||||
} catch (MathIllegalArgumentException e) {
|
||||
// expected
|
||||
}
|
||||
t.transform(input);
|
||||
}
|
||||
|
||||
@Test
|
||||
|
|
Loading…
Reference in New Issue