Home
last modified time | relevance | path

Searched refs:ApkInstaller (Results 1 – 9 of 9) sorted by relevance

/test/app_compat/csuite/harness/src/test/java/com/android/csuite/core/
DApkInstallerTest.java22 import com.android.csuite.core.ApkInstaller.ApkInstallerException;
52 ApkInstaller sut = in install_failedToListApks_throwsException()
53 new ApkInstaller("serial", Mockito.mock(IRunUtil.class), apk -> "package.name"); in install_failedToListApks_throwsException()
66 ApkInstaller sut = new ApkInstaller("serial", runUtil, apk -> "package.name"); in install_installCommandFailed_throwsException()
79 ApkInstaller sut = new ApkInstaller("serial", runUtil, apk -> "package.name"); in install_installCommandSucceed_doesNotThrow()
92 ApkInstaller sut = in install_parsePackageNameFailed_throwsException()
93 new ApkInstaller( in install_parsePackageNameFailed_throwsException()
114 ApkInstaller sut = new ApkInstaller("serial", runUtil, apk -> "package.name"); in install_obbExists_installObb()
/test/app_compat/csuite/test_scripts/src/main/java/com/android/csuite/tests/
DAppCrawlTest.java19 import com.android.csuite.core.ApkInstaller;
20 import com.android.csuite.core.ApkInstaller.ApkInstallerException;
60 private ApkInstaller mApkInstaller;
162 throws ApkInstaller.ApkInstallerException, IOException, DeviceNotAvailableException { in setUp()
179 mApkInstaller = ApkInstaller.getInstance(getDevice()); in setUp()
DAppLaunchTest.java19 import com.android.csuite.core.ApkInstaller;
20 import com.android.csuite.core.ApkInstaller.ApkInstallerException;
66 private ApkInstaller mApkInstaller;
132 mApkInstaller = ApkInstaller.getInstance(getDevice()); in setUp()
/test/app_compat/csuite/test_scripts/src/main/java/com/android/webview/tests/
DWebviewAppLaunchTest.java19 import com.android.csuite.core.ApkInstaller;
20 import com.android.csuite.core.ApkInstaller.ApkInstallerException;
55 private ApkInstaller mApkInstaller;
96 mApkInstaller = ApkInstaller.getInstance(getDevice()); in setUp()
DWebviewAppCrawlTest.java19 import com.android.csuite.core.ApkInstaller;
20 import com.android.csuite.core.ApkInstaller.ApkInstallerException;
60 private ApkInstaller mApkInstaller;
184 mApkInstaller = ApkInstaller.getInstance(getDevice()); in setUp()
/test/app_compat/csuite/harness/src/main/java/com/android/csuite/core/
DApkInstaller.java39 public final class ApkInstaller { class
47 public static ApkInstaller getInstance(ITestDevice device) { in getInstance()
51 public static ApkInstaller getInstance(String deviceSerial) { in getInstance()
52 return new ApkInstaller(deviceSerial, new RunUtil(), new AaptPackageNameParser()); in getInstance()
56 ApkInstaller(String deviceSerial, IRunUtil runUtil, PackageNameParser packageNameParser) { in ApkInstaller() method in ApkInstaller
/test/app_compat/csuite/test_scripts/src/main/java/com/android/art/tests/
DAppCompileLaunchTest.java19 import com.android.csuite.core.ApkInstaller;
20 import com.android.csuite.core.ApkInstaller.ApkInstallerException;
68 private ApkInstaller mApkInstaller;
134 mApkInstaller = ApkInstaller.getInstance(getDevice()); in testCompileLaunch()
DAppLaunchImgdiagTest.java19 import com.android.csuite.core.ApkInstaller.ApkInstallerException;
/test/suite_harness/common/host-side/tradefed/src/com/android/compatibility/common/tradefed/targetprep/
DApkInstaller.java36 public class ApkInstaller extends TestAppInstallSetup { class