Author: ggregory
Date: Wed Jan 23 16:25:05 2013
New Revision: 1437541

URL: http://svn.apache.org/viewvc?rev=1437541&view=rev
Log:
JUnit 3 -> 4: replace import of junit.framework.Assert with org.junit.Assert.

Modified:
    
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/analysis/differentiation/JacobianFunctionTest.java
    
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/exception/util/LocalizedFormatsTest.java
    
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/genetics/UniformCrossoverTest.java
    
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/optimization/general/AbstractLeastSquaresOptimizerTest.java
    
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/ranking/NaturalRankingTest.java
    
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/util/Decimal64Test.java

Modified: 
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/analysis/differentiation/JacobianFunctionTest.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math3/analysis/differentiation/JacobianFunctionTest.java?rev=1437541&r1=1437540&r2=1437541&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/analysis/differentiation/JacobianFunctionTest.java
 (original)
+++ 
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/analysis/differentiation/JacobianFunctionTest.java
 Wed Jan 23 16:25:05 2013
@@ -17,7 +17,7 @@
 
 package org.apache.commons.math3.analysis.differentiation;
 
-import junit.framework.Assert;
+import org.junit.Assert;
 
 import org.apache.commons.math3.TestUtils;
 import org.apache.commons.math3.util.FastMath;

Modified: 
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/exception/util/LocalizedFormatsTest.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math3/exception/util/LocalizedFormatsTest.java?rev=1437541&r1=1437540&r2=1437541&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/exception/util/LocalizedFormatsTest.java
 (original)
+++ 
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/exception/util/LocalizedFormatsTest.java
 Wed Jan 23 16:25:05 2013
@@ -22,7 +22,7 @@ import java.util.Enumeration;
 import java.util.Locale;
 import java.util.ResourceBundle;
 
-import junit.framework.Assert;
+import org.junit.Assert;
 
 import org.junit.Test;
 

Modified: 
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/genetics/UniformCrossoverTest.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math3/genetics/UniformCrossoverTest.java?rev=1437541&r1=1437540&r2=1437541&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/genetics/UniformCrossoverTest.java
 (original)
+++ 
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/genetics/UniformCrossoverTest.java
 Wed Jan 23 16:25:05 2013
@@ -19,7 +19,7 @@ package org.apache.commons.math3.genetic
 import java.util.ArrayList;
 import java.util.List;
 
-import junit.framework.Assert;
+import org.junit.Assert;
 
 import org.apache.commons.math3.exception.DimensionMismatchException;
 import org.apache.commons.math3.exception.MathIllegalArgumentException;

Modified: 
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/optimization/general/AbstractLeastSquaresOptimizerTest.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math3/optimization/general/AbstractLeastSquaresOptimizerTest.java?rev=1437541&r1=1437540&r2=1437541&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/optimization/general/AbstractLeastSquaresOptimizerTest.java
 (original)
+++ 
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/optimization/general/AbstractLeastSquaresOptimizerTest.java
 Wed Jan 23 16:25:05 2013
@@ -16,7 +16,7 @@ package org.apache.commons.math3.optimiz
 import java.io.IOException;
 import java.util.Arrays;
 
-import junit.framework.Assert;
+import org.junit.Assert;
 
 import org.apache.commons.math3.optimization.PointVectorValuePair;
 import org.apache.commons.math3.util.FastMath;

Modified: 
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/ranking/NaturalRankingTest.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/ranking/NaturalRankingTest.java?rev=1437541&r1=1437540&r2=1437541&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/ranking/NaturalRankingTest.java
 (original)
+++ 
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/stat/ranking/NaturalRankingTest.java
 Wed Jan 23 16:25:05 2013
@@ -16,7 +16,7 @@
  */
 package org.apache.commons.math3.stat.ranking;
 
-import junit.framework.Assert;
+import org.junit.Assert;
 
 import org.apache.commons.math3.TestUtils;
 import org.apache.commons.math3.exception.NotANumberException;

Modified: 
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/util/Decimal64Test.java
URL: 
http://svn.apache.org/viewvc/commons/proper/math/trunk/src/test/java/org/apache/commons/math3/util/Decimal64Test.java?rev=1437541&r1=1437540&r2=1437541&view=diff
==============================================================================
--- 
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/util/Decimal64Test.java
 (original)
+++ 
commons/proper/math/trunk/src/test/java/org/apache/commons/math3/util/Decimal64Test.java
 Wed Jan 23 16:25:05 2013
@@ -16,7 +16,7 @@
  */
 package org.apache.commons.math3.util;
 
-import junit.framework.Assert;
+import org.junit.Assert;
 
 import org.junit.Test;
 


Reply via email to