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

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1437577 13f79535-47bb-0310-9956-ffa450edef68
This commit is contained in:
Gary D. Gregory 2013-01-23 17:19:46 +00:00
parent 846f34df7a
commit 79c1aa0b5d
15 changed files with 15 additions and 15 deletions

View File

@ -32,7 +32,7 @@ import java.io.IOException;
import java.io.InputStream;
import java.util.concurrent.atomic.AtomicBoolean;
import junit.framework.Assert;
import org.junit.Assert;
import org.apache.http.Consts;
import org.apache.http.HttpEntity;

View File

@ -26,7 +26,7 @@
*/
package org.apache.http.client.protocol;
import junit.framework.Assert;
import org.junit.Assert;
import org.apache.http.Header;
import org.apache.http.HttpRequest;

View File

@ -26,7 +26,7 @@
*/
package org.apache.http.client.protocol;
import junit.framework.Assert;
import org.junit.Assert;
import org.apache.http.HttpHost;
import org.apache.http.HttpRequest;

View File

@ -26,7 +26,7 @@
*/
package org.apache.http.client.protocol;
import junit.framework.Assert;
import org.junit.Assert;
import org.apache.http.Header;
import org.apache.http.HttpHost;

View File

@ -29,7 +29,7 @@ package org.apache.http.client.protocol;
import java.util.ArrayList;
import java.util.List;
import junit.framework.Assert;
import org.junit.Assert;
import org.apache.http.Header;
import org.apache.http.HttpRequest;

View File

@ -26,7 +26,7 @@
*/
package org.apache.http.client.protocol;
import junit.framework.Assert;
import org.junit.Assert;
import org.apache.http.HttpHost;
import org.apache.http.HttpResponse;

View File

@ -26,7 +26,7 @@
*/
package org.apache.http.client.protocol;
import junit.framework.Assert;
import org.junit.Assert;
import org.apache.http.HttpEntity;
import org.apache.http.HttpException;

View File

@ -28,7 +28,7 @@ package org.apache.http.client.protocol;
import java.util.List;
import junit.framework.Assert;
import org.junit.Assert;
import org.apache.http.HttpResponse;
import org.apache.http.HttpResponseInterceptor;

View File

@ -29,7 +29,7 @@ package org.apache.http.conn;
import java.io.IOException;
import java.io.InputStream;
import junit.framework.Assert;
import org.junit.Assert;
import org.junit.Before;
import org.junit.Test;

View File

@ -29,7 +29,7 @@ package org.apache.http.impl.client;
import java.io.InputStream;
import junit.framework.Assert;
import org.junit.Assert;
import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;

View File

@ -29,7 +29,7 @@ package org.apache.http.impl.client;
import java.io.IOException;
import java.io.InputStream;
import junit.framework.Assert;
import org.junit.Assert;
import org.apache.http.HttpEntity;
import org.apache.http.HttpHost;

View File

@ -30,7 +30,7 @@ import java.io.Closeable;
import java.io.IOException;
import java.util.Arrays;
import junit.framework.Assert;
import org.junit.Assert;
import org.apache.http.HttpException;
import org.apache.http.HttpHost;

View File

@ -30,7 +30,7 @@ package org.apache.http.impl.cookie;
import java.io.InputStreamReader;
import java.io.Reader;
import junit.framework.Assert;
import org.junit.Assert;
import org.apache.http.cookie.CookieOrigin;
import org.junit.Before;

View File

@ -29,7 +29,7 @@ package org.apache.http.impl.execchain;
import java.io.IOException;
import java.util.concurrent.TimeUnit;
import junit.framework.Assert;
import org.junit.Assert;
import org.apache.commons.logging.Log;
import org.apache.http.HttpClientConnection;

View File

@ -31,7 +31,7 @@ import java.io.InputStream;
import java.io.OutputStream;
import java.net.SocketException;
import junit.framework.Assert;
import org.junit.Assert;
import org.apache.http.HttpEntity;
import org.apache.http.util.EntityUtils;