Home
last modified time | relevance | path

Searched refs:testApps (Results 1 – 10 of 10) 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()
DInstallTest.java151 List<TestApp> testApps = mInstallRule.getTestApps(mInstallType, versionCode); in getParameterizedInstall() local
152 Install install = testApps.size() == 1 in getParameterizedInstall()
153 ? Install.single(testApps.get(0)) in getParameterizedInstall()
154 : 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/common/device-side/bedstead/testapp/src/main/library/java/com/android/bedstead/testapp/
DTestAppQueryBuilder.java58 for (TestAppDetails details : mProvider.testApps()) { in resolveQuery()
DTestAppProvider.java50 Set<TestAppDetails> testApps() { in testApps() method in TestAppProvider
/cts/hostsidetests/devicepolicy/app/ManagedProfile/src/com/android/cts/managedprofile/
DSettingsIntentsTest.java53 public void testApps() { in testApps() method in SettingsIntentsTest
/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.java1304 private static StageSessionResult stageMultipleApks(TestApp... testApps) throws Exception { in stageMultipleApks() argument
1305 Log.i(TAG, "Staging an install of " + Arrays.toString(testApps)); in stageMultipleApks()
1306 int multiPackageSessionId = Install.multi(testApps).setStaged().createSession(); in stageMultipleApks()