mirror of
https://github.com/apache/cordova-android.git
synced 2025-01-19 07:02:51 +08:00
This is a poorly written test. What was I thinking?
This commit is contained in:
parent
f060d09272
commit
cbd0b7a94b
@ -1,50 +0,0 @@
|
||||
package org.apache.cordova.test;
|
||||
|
||||
import org.apache.cordova.CordovaWebView;
|
||||
|
||||
import android.test.ActivityInstrumentationTestCase2;
|
||||
import android.widget.FrameLayout;
|
||||
import android.widget.LinearLayout;
|
||||
|
||||
public class LoadTimeoutTest extends ActivityInstrumentationTestCase2<loading> {
|
||||
private loading testActivity;
|
||||
private FrameLayout containerView;
|
||||
private LinearLayout innerContainer;
|
||||
private CordovaWebView testView;
|
||||
private long TIMEOUT = 1000;
|
||||
|
||||
public LoadTimeoutTest()
|
||||
{
|
||||
super("org.apache.cordova.test",loading.class);
|
||||
}
|
||||
|
||||
protected void setUp() throws Exception {
|
||||
super.setUp();
|
||||
testActivity = this.getActivity();
|
||||
containerView = (FrameLayout) testActivity.findViewById(android.R.id.content);
|
||||
innerContainer = (LinearLayout) containerView.getChildAt(0);
|
||||
testView = (CordovaWebView) innerContainer.getChildAt(0);
|
||||
}
|
||||
|
||||
public void testPreconditions(){
|
||||
assertNotNull(innerContainer);
|
||||
assertNotNull(testView);
|
||||
}
|
||||
|
||||
public void testUrl()
|
||||
{
|
||||
sleep();
|
||||
String good_url = "http://www.google.com";
|
||||
String url = testView.getUrl();
|
||||
assertNotNull(url);
|
||||
assertFalse(url.equals(good_url));
|
||||
}
|
||||
|
||||
private void sleep() {
|
||||
try {
|
||||
Thread.sleep(TIMEOUT );
|
||||
} catch (InterruptedException e) {
|
||||
fail("Unexpected Timeout");
|
||||
}
|
||||
}
|
||||
}
|
Loading…
Reference in New Issue
Block a user