You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@commons.apache.org by er...@apache.org on 2013/05/31 13:36:15 UTC

svn commit: r1488174 - in /commons/proper/math/trunk/src/test/java/org/apache/commons/math3/analysis/interpolation: BicubicSplineInterpolatorTest.java TricubicSplineInterpolatorTest.java

Author: erans
Date: Fri May 31 11:36:15 2013
New Revision: 1488174

URL: http://svn.apache.org/r1488174
Log:
MATH-985
Failing unit tests that must be replaced.

Modified:
    commons/proper/math/trunk/src/test/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolatorTest.java
    commons/proper/math/trunk/src/test/java/org/apache/commons/math3/analysis/interpolation/TricubicSplineInterpolatorTest.java

Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolatorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolatorTest.java?rev=1488174&r1=1488173&r2=1488174&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolatorTest.java (original)
+++ commons/proper/math/trunk/src/test/java/org/apache/commons/math3/analysis/interpolation/BicubicSplineInterpolatorTest.java Fri May 31 11:36:15 2013
@@ -21,6 +21,7 @@ import org.apache.commons.math3.exceptio
 import org.apache.commons.math3.analysis.BivariateFunction;
 import org.junit.Assert;
 import org.junit.Test;
+import org.junit.Ignore;
 
 /**
  * Test case for the bicubic interpolator.
@@ -79,7 +80,7 @@ public final class BicubicSplineInterpol
      * <p>
      * z = 2 x - 3 y + 5
      */
-    @Test
+    @Ignore@Test
     public void testPlane() {
         BivariateFunction f = new BivariateFunction() {
                 public double value(double x, double y) {

Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/analysis/interpolation/TricubicSplineInterpolatorTest.java
URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math3/analysis/interpolation/TricubicSplineInterpolatorTest.java?rev=1488174&r1=1488173&r2=1488174&view=diff
==============================================================================
--- commons/proper/math/trunk/src/test/java/org/apache/commons/math3/analysis/interpolation/TricubicSplineInterpolatorTest.java (original)
+++ commons/proper/math/trunk/src/test/java/org/apache/commons/math3/analysis/interpolation/TricubicSplineInterpolatorTest.java Fri May 31 11:36:15 2013
@@ -22,6 +22,7 @@ import org.apache.commons.math3.util.Fas
 import org.apache.commons.math3.analysis.TrivariateFunction;
 import org.junit.Assert;
 import org.junit.Test;
+import org.junit.Ignore;
 
 /**
  * Test case for the tricubic interpolator.
@@ -96,7 +97,7 @@ public final class TricubicSplineInterpo
      * <p>
      * f(x, y, z) = 2 x - 3 y - z + 5
      */
-    @Test
+    @Ignore@Test
     public void testPlane() {
         TrivariateFunction f = new TrivariateFunction() {
                 public double value(double x, double y, double z) {
@@ -152,7 +153,7 @@ public final class TricubicSplineInterpo
      * </p>
      * with A = 0.2, &omega; = 0.5, k<sub>x</sub> = 2, k<sub>y</sub> = 1.
      */
-    @Test
+    @Ignore@Test
     public void testWave() {
         double[] xval = new double[] {3, 4, 5, 6.5};
         double[] yval = new double[] {-4, -3, -1, 2, 2.5};