diff -r 000000000000 -r 6474c204b198 mobile/android/base/tests/testLoad.java --- /dev/null Thu Jan 01 00:00:00 1970 +0000 +++ b/mobile/android/base/tests/testLoad.java Wed Dec 31 06:09:35 2014 +0100 @@ -0,0 +1,19 @@ +package org.mozilla.gecko.tests; + +/** + * A basic page load test. + * - loads a page + * - verifies it rendered properly + * - verifies the displayed url is correct + */ +public class testLoad extends PixelTest { + public void testLoad() { + String url = getAbsoluteUrl("/robocop/robocop_boxes.html"); + + blockForGeckoReady(); + + loadAndVerifyBoxes(url); + + verifyUrl(url); + } +}