JUnit 3 -> 4: replace import of junit.framework.Assert with org.junit.Assert.

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/math/trunk@1437541 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2013-01-23 16:25:05 +00:00
parent 0c0822d658
commit 95a6da2a68
6 changed files with 6 additions and 6 deletions

View File

@ -17,7 +17,7 @@
package org.apache.commons.math3.analysis.differentiation; 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.TestUtils;
import org.apache.commons.math3.util.FastMath; import org.apache.commons.math3.util.FastMath;

View File

@ -22,7 +22,7 @@ import java.util.Enumeration;
import java.util.Locale; import java.util.Locale;
import java.util.ResourceBundle; import java.util.ResourceBundle;
import junit.framework.Assert; import org.junit.Assert;
import org.junit.Test; import org.junit.Test;

View File

@ -19,7 +19,7 @@ package org.apache.commons.math3.genetics;
import java.util.ArrayList; import java.util.ArrayList;
import java.util.List; 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.DimensionMismatchException;
import org.apache.commons.math3.exception.MathIllegalArgumentException; import org.apache.commons.math3.exception.MathIllegalArgumentException;

View File

@ -16,7 +16,7 @@ package org.apache.commons.math3.optimization.general;
import java.io.IOException; import java.io.IOException;
import java.util.Arrays; import java.util.Arrays;
import junit.framework.Assert; import org.junit.Assert;
import org.apache.commons.math3.optimization.PointVectorValuePair; import org.apache.commons.math3.optimization.PointVectorValuePair;
import org.apache.commons.math3.util.FastMath; import org.apache.commons.math3.util.FastMath;

View File

@ -16,7 +16,7 @@
*/ */
package org.apache.commons.math3.stat.ranking; 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.TestUtils;
import org.apache.commons.math3.exception.NotANumberException; import org.apache.commons.math3.exception.NotANumberException;

View File

@ -16,7 +16,7 @@
*/ */
package org.apache.commons.math3.util; package org.apache.commons.math3.util;
import junit.framework.Assert; import org.junit.Assert;
import org.junit.Test; import org.junit.Test;