mirror of
https://gitlab.winehq.org/wine/wine-gecko.git
synced 2024-09-13 09:24:08 -07:00
d2f4ccc15c
- 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
14 lines
319 B
Java
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);
|
|
}
|
|
}
|