Searched refs:testApps (Results 1 – 9 of 9) sorted by relevance
114 List<TestApp> testApps = mInstallRule.getTestApps(mInstallType, versionCode); in getParameterizedInstall() local115 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()
149 List<TestApp> testApps = mInstallRule.getTestApps(mInstallType, versionCode); in getParameterizedInstall() local150 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()
163 List<TestApp> testApps = mInstallRule.getTestApps(mInstallType, versionCode); in getParameterizedInstall() local164 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()
50 private Install(boolean isMultiPackage, TestApp... testApps) { in Install() argument52 mTestApps = testApps; in Install()72 public static Install multi(TestApp... testApps) { in multi() argument73 return new Install(true, testApps); in multi()
53 public void testApps() { in testApps() method in SettingsIntentsTest
56 Set<TestAppDetails> testApps() { in testApps() method in TestAppProvider
145 for (TestAppDetails details : mProvider.testApps()) { in resolveQuery()
153 public void testApps() throws Exception { in testApps() method in AdoptableHostTest
1477 private static StageSessionResult stageMultipleApks(TestApp... testApps) throws Exception { in stageMultipleApks() argument1478 Log.i(TAG, "Staging an install of " + Arrays.toString(testApps)); in stageMultipleApks()1479 int multiPackageSessionId = Install.multi(testApps).setStaged().createSession(); in stageMultipleApks()