diff --git a/test/src/org/apache/cordova/test/LoadTimeoutTest.java b/test/src/org/apache/cordova/test/LoadTimeoutTest.java deleted file mode 100644 index 1978f7ed..00000000 --- a/test/src/org/apache/cordova/test/LoadTimeoutTest.java +++ /dev/null @@ -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 { - 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"); - } - } -}