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

git-svn-id: https://svn.apache.org/repos/asf/commons/proper/lang/trunk@1437526 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2013-01-23 16:05:20 +00:00
parent 9b2d0335e6
commit 909630731f
6 changed files with 6 additions and 6 deletions

View File

@ -24,7 +24,7 @@
import java.lang.reflect.Constructor;
import java.lang.reflect.Modifier;
import junit.framework.Assert;
import org.junit.Assert;
import org.junit.Test;

View File

@ -28,7 +28,7 @@
import java.lang.reflect.Modifier;
import java.util.Locale;
import junit.framework.Assert;
import org.junit.Assert;
/**
* Unit tests {@link org.apache.commons.lang3.SystemUtils}.

View File

@ -28,7 +28,7 @@
import java.util.concurrent.Executors;
import java.util.concurrent.Future;
import junit.framework.Assert;
import org.junit.Assert;
import org.junit.Ignore;
import org.junit.Test;

View File

@ -21,7 +21,7 @@
import java.util.Collection;
import java.util.List;
import junit.framework.Assert;
import org.junit.Assert;
import org.apache.commons.lang3.ArrayUtils;
import org.junit.Test;

View File

@ -30,7 +30,7 @@
import java.util.Map;
import java.util.TimeZone;
import junit.framework.Assert;
import org.junit.Assert;
import org.apache.commons.lang3.SerializationUtils;
import org.junit.Test;

View File

@ -19,7 +19,7 @@
import static org.junit.Assert.assertEquals;
import static org.junit.Assert.assertTrue;
import static org.junit.Assert.fail;
import junit.framework.Assert;
import org.junit.Assert;
import org.junit.Test;