gecko/mobile/android/base/tests/testLoad.java.in
Kartikaya Gupta d2f4ccc15c Bug 715443 - [2/2] More robotium cleanup. r=jmaher
- Extract utility functions into BaseTest so that there's a bunch of duplicated code everywhere
- Use long instead of Long in testPan to avoid object creation
2012-01-05 10:20:22 -05:00

14 lines
319 B
Java

#filter substitution
package @ANDROID_PACKAGE_NAME@.tests;
import @ANDROID_PACKAGE_NAME@.*;
public class testLoad extends BaseTest {
private static final String URL = "http://mochi.test:8888/tests/robocop/robocop_blank_03.html";
public void testLoad() {
loadUrl(URL);
verifyUrl(URL);
}
}