mirror of
https://github.com/mozilla/gecko-dev.git
synced 2024-11-01 06:35:42 +00:00
fe44f36220
--HG-- extra : rebase_source : 376574e0c41b91c16a6be335584a4a61768bb4a9
26 lines
514 B
Java
26 lines
514 B
Java
#filter substitution
|
|
package @ANDROID_PACKAGE_NAME@.tests;
|
|
|
|
/**
|
|
* A basic page load test.
|
|
* - loads a page
|
|
* - verifies it rendered properly
|
|
* - verifies the displayed url is correct
|
|
*/
|
|
public class testLoad extends PixelTest {
|
|
@Override
|
|
protected int getTestType() {
|
|
return TEST_MOCHITEST;
|
|
}
|
|
|
|
public void testLoad() {
|
|
String url = getAbsoluteUrl("/robocop/robocop_boxes.html");
|
|
|
|
blockForGeckoReady();
|
|
|
|
loadAndVerifyBoxes(url);
|
|
|
|
verifyUrl(url);
|
|
}
|
|
}
|