Skip to content

Commit

Permalink
JUnit 3 -> 4: replace import of junit.framework.Assert with org.junit…
Browse files Browse the repository at this point in the history
….Assert.

git-svn-id: https://svn.apache.org/repos/asf/httpcomponents/httpclient/trunk@1437577 13f79535-47bb-0310-9956-ffa450edef68
  • Loading branch information
garydgregory committed Jan 23, 2013
1 parent 846f34d commit 79c1aa0
Show file tree
Hide file tree
Showing 15 changed files with 15 additions and 15 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -32,7 +32,7 @@
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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -28,7 +28,7 @@

import java.util.List;

import junit.framework.Assert;
import org.junit.Assert;

import org.apache.http.HttpResponse;
import org.apache.http.HttpResponseInterceptor;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
import java.io.IOException;
import java.io.InputStream;

import junit.framework.Assert;
import org.junit.Assert;

import org.junit.Before;
import org.junit.Test;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@

import java.io.InputStream;

import junit.framework.Assert;
import org.junit.Assert;

import org.apache.http.HttpEntity;
import org.apache.http.HttpResponse;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -30,7 +30,7 @@
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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -29,7 +29,7 @@
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;
Expand Down
Original file line number Diff line number Diff line change
Expand Up @@ -31,7 +31,7 @@
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;
Expand Down

0 comments on commit 79c1aa0

Please sign in to comment.