Author: celestin Date: Fri Jul 13 11:37:40 2012 New Revision: 1361170 URL: http://svn.apache.org/viewvc?rev=1361170&view=rev Log: Added @Ignore tags with explanatory messages for unit tests ignored until MATH-821 is solved.
Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/SparseRealVectorTest.java Modified: commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/SparseRealVectorTest.java URL: http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/SparseRealVectorTest.java?rev=1361170&r1=1361169&r2=1361170&view=diff ============================================================================== --- commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/SparseRealVectorTest.java (original) +++ commons/proper/math/trunk/src/test/java/org/apache/commons/math3/linear/SparseRealVectorTest.java Fri Jul 13 11:37:40 2012 @@ -17,6 +17,7 @@ package org.apache.commons.math3.linear; import org.junit.Assert; +import org.junit.Ignore; import org.junit.Test; /** @@ -105,6 +106,7 @@ public class SparseRealVectorTest extend */ @Test @Override + @Ignore("This test is skipped until MATH-821 is fixed") public void testMap() {} /** @@ -114,5 +116,6 @@ public class SparseRealVectorTest extend */ @Test @Override + @Ignore("This test is skipped until MATH-821 is fixed") public void testMapToSelf() {} }