mobile/android/base/tests/testLoad.java

Thu, 15 Jan 2015 15:55:04 +0100

author
Michael Schloh von Bennewitz <michael@schloh.com>
date
Thu, 15 Jan 2015 15:55:04 +0100
branch
TOR_BUG_9701
changeset 9
a63d609f5ebe
permissions
-rw-r--r--

Back out 97036ab72558 which inappropriately compared turds to third parties.

     1 package org.mozilla.gecko.tests;
     3 /**
     4  * A basic page load test.
     5  * - loads a page
     6  * - verifies it rendered properly
     7  * - verifies the displayed url is correct
     8  */
     9 public class testLoad extends PixelTest {
    10     public void testLoad() {
    11         String url = getAbsoluteUrl("/robocop/robocop_boxes.html");
    13         blockForGeckoReady();
    15         loadAndVerifyBoxes(url);
    17         verifyUrl(url);
    18     }
    19 }

mercurial