Home
last modified time | relevance | path

Searched refs:Apex3 (Results 1 – 2 of 2) sorted by relevance

/cts/hostsidetests/rollback/app/src/com/android/cts/rollback/host/app/
DHostTestHelper.java156 Install.single(TestApp.Apex3).setStaged().setEnableRollback().commit(); in testApexOnlyEnableRollback()
172 Rollback.from(TestApp.Apex3).to(TestApp.Apex2)); in testApexOnlyCommitRollback()
174 Utils.rollback(available.getRollbackId(), TestApp.Apex3); in testApexOnlyCommitRollback()
179 Rollback.from(TestApp.Apex3).to(TestApp.Apex2)); in testApexOnlyCommitRollback()
180 assertThat(committed).causePackagesContainsExactly(TestApp.Apex3); in testApexOnlyCommitRollback()
233 Install.multi(TestApp.Apex3, TestApp.A2).setStaged().setEnableRollback().commit(); in testApexAndApkEnableRollback()
250 Rollback.from(TestApp.Apex3).to(TestApp.Apex2), in testApexAndApkCommitRollback()
253 Utils.rollback(available.getRollbackId(), TestApp.Apex3, TestApp.A2); in testApexAndApkCommitRollback()
258 Rollback.from(TestApp.Apex3).to(TestApp.Apex2), in testApexAndApkCommitRollback()
260 assertThat(committed).causePackagesContainsExactly(TestApp.Apex3, TestApp.A2); in testApexAndApkCommitRollback()
[all …]
/cts/libs/rollback/src/com/android/cts/rollback/lib/
DTestApp.java34 public static final TestApp Apex3 = new TestApp("Apex3", Apex, 3, /*isApex*/true, field in TestApp