blob: 3d84c04c664739a1d170d8c3fa410527638f41d9 (
plain)
1
2
3
4
5
6
7
8
9
10
|
public class LocalTests extends IosTest {
/**
* Check that app started up correctly. Then check that app continually runs for 5 seconds.
* Then wait up to 20 seconds for the splash screen disappear.
* @throws InterruptedException
*/
@Test(groups = {"testdroid", "local"})
public void checkAppForCrash() throws InterruptedException {
}
}
|