Home
last modified time | relevance | path

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

/cts/hostsidetests/install/app/src/android/cts/install/
DUpgradeTest.java114 List<TestApp> testApps = mInstallRule.getTestApps(mInstallType, versionCode); in getParameterizedInstall() local
115 Install install = testApps.size() == 1 in getParameterizedInstall()
116 ? Install.single(testApps.get(0)) in getParameterizedInstall()
117 : Install.multi(testApps.toArray(new TestApp[testApps.size()])); in getParameterizedInstall()
DDowngradeTest.java149 List<TestApp> testApps = mInstallRule.getTestApps(mInstallType, versionCode); in getParameterizedInstall() local
150 Install install = testApps.size() == 1 in getParameterizedInstall()
151 ? Install.single(testApps.get(0)) in getParameterizedInstall()
152 : Install.multi(testApps.toArray(new TestApp[testApps.size()])); in getParameterizedInstall()
DSamegradeTest.java163 List<TestApp> testApps = mInstallRule.getTestApps(mInstallType, versionCode); in getParameterizedInstall() local
164 Install install = testApps.size() == 1 in getParameterizedInstall()
165 ? Install.single(testApps.get(0)) in getParameterizedInstall()
166 : Install.multi(testApps.toArray(new TestApp[testApps.size()])); in getParameterizedInstall()
/cts/libs/install/src/com/android/cts/install/lib/
DInstall.java50 private Install(boolean isMultiPackage, TestApp... testApps) { in Install() argument
52 mTestApps = testApps; in Install()
72 public static Install multi(TestApp... testApps) { in multi() argument
73 return new Install(true, testApps); in multi()
/cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
DSettingsIntentsTest.java53 public void testApps() { in testApps() method in SettingsIntentsTest
/cts/common/device-side/bedstead/testapp/src/library/main/java/com/android/bedstead/testapp/
DTestAppProvider.java56 Set<TestAppDetails> testApps() { in testApps() method in TestAppProvider
DTestAppQueryBuilder.java145 for (TestAppDetails details : mProvider.testApps()) { in resolveQuery()
/cts/hostsidetests/appsecurity/src/android/appsecurity/cts/
DAdoptableHostTest.java153 public void testApps() throws Exception { in testApps() method in AdoptableHostTest
/cts/hostsidetests/stagedinstall/app/src/com/android/tests/stagedinstall/
DStagedInstallTest.java1477 private static StageSessionResult stageMultipleApks(TestApp... testApps) throws Exception { in stageMultipleApks() argument
1478 Log.i(TAG, "Staging an install of " + Arrays.toString(testApps)); in stageMultipleApks()
1479 int multiPackageSessionId = Install.multi(testApps).setStaged().createSession(); in stageMultipleApks()