Skip to content

Commit

Permalink
renaming TwitterTestUnit to TwitterTest
Browse files Browse the repository at this point in the history
  • Loading branch information
yusuke committed Oct 7, 2010
1 parent 4523dcf commit 319c6df
Show file tree
Hide file tree
Showing 4 changed files with 5 additions and 8 deletions.
4 changes: 2 additions & 2 deletions twitter4j-core/src/test/java/twitter4j/AsyncTwitterTest.java
Expand Up @@ -159,11 +159,11 @@ public void testGetUserTimeline_Show() throws Exception {
}
public void testAccountProfileImageUpdates() throws Exception {
te = null;
async1.updateProfileImage(TwitterTestUnit.getRandomlyChosenFile());
async1.updateProfileImage(TwitterTest.getRandomlyChosenFile());
waitForResponse();
assertNull(te);
// tile randomly
async1.updateProfileBackgroundImage(TwitterTestUnit.getRandomlyChosenFile(),
async1.updateProfileBackgroundImage(TwitterTest.getRandomlyChosenFile(),
(5 < System.currentTimeMillis() % 5));
waitForResponse();
assertNull(te);
Expand Down
2 changes: 1 addition & 1 deletion twitter4j-core/src/test/java/twitter4j/SSLTestUnit.java
Expand Up @@ -29,7 +29,7 @@
/**
* @author Yusuke Yamamoto - yusuke at mac.com
*/
public class SSLTestUnit extends TwitterTestUnit {
public class SSLTestUnit extends TwitterTest {
public SSLTestUnit(String name) {
super(name);
}
Expand Down
Expand Up @@ -37,9 +37,9 @@
/**
* @author Yusuke Yamamoto - yusuke at mac.com
*/
public class TwitterTestUnit extends TwitterTestBase {
public class TwitterTest extends TwitterTestBase {

public TwitterTestUnit(String name) {
public TwitterTest(String name) {
super(name);
}

Expand Down
3 changes: 0 additions & 3 deletions twitter4j-core/src/test/java/twitter4j/http/OAuthTest.java
Expand Up @@ -26,19 +26,16 @@
*/
package twitter4j.http;

import junit.framework.TestCase;
import twitter4j.StatusStream;
import twitter4j.Twitter;
import twitter4j.TwitterException;
import twitter4j.TwitterFactory;
import twitter4j.TwitterStream;
import twitter4j.TwitterTestBase;
import twitter4j.TwitterTestUnit;
import twitter4j.conf.Configuration;
import twitter4j.conf.ConfigurationBuilder;
import twitter4j.conf.ConfigurationContext;
import twitter4j.conf.PropertyConfiguration;
import twitter4j.internal.http.HttpClient;
import twitter4j.internal.http.HttpClientImpl;
import twitter4j.internal.http.HttpParameter;
import twitter4j.internal.http.HttpRequest;
Expand Down

0 comments on commit 319c6df

Please sign in to comment.