This source file includes following definitions.
- Feature
- testBaseStartup
package org.chromium.content_shell_apk;
import android.test.suitebuilder.annotation.SmallTest;
import org.chromium.base.test.util.Feature;
public class ContentShellUrlTest extends ContentShellTestBase {
private static final String URL = "data:text";
@SmallTest
@Feature({"Main"})
public void testBaseStartup() throws Exception {
ContentShellActivity activity = launchContentShellWithUrl(URL);
assertNotNull(activity);
assertEquals(URL, activity.getActiveShell().getContentView().getUrl());
}
}