Home
last modified time | relevance | path

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

/frameworks/support/work/workmanager/src/androidTest/java/androidx/work/impl/
DWorkManagerImplTest.java514 OneTimeWorkRequest replacementWork2 = in testBeginUniqueWork_deletesOldWorkOnReplace() local
518 .then(replacementWork2) in testBeginUniqueWork_deletesOldWorkOnReplace()
525 containsInAnyOrder(replacementWork1.getStringId(), replacementWork2.getStringId())); in testBeginUniqueWork_deletesOldWorkOnReplace()
530 assertThat(workSpecDao.getWorkSpec(replacementWork2.getStringId()), is(not(nullValue()))); in testBeginUniqueWork_deletesOldWorkOnReplace()
580 OneTimeWorkRequest replacementWork2 = in testBeginUniqueWork_keepsExistingWorkOnKeep() local
584 .then(replacementWork2) in testBeginUniqueWork_keepsExistingWorkOnKeep()
594 assertThat(workSpecDao.getWorkSpec(replacementWork2.getStringId()), is(nullValue())); in testBeginUniqueWork_keepsExistingWorkOnKeep()
645 OneTimeWorkRequest replacementWork2 = in testBeginUniqueWork_replacesExistingWorkOnKeepWhenExistingWorkIsDone() local
649 .then(replacementWork2) in testBeginUniqueWork_replacesExistingWorkOnKeepWhenExistingWorkIsDone()
655 containsInAnyOrder(replacementWork1.getStringId(), replacementWork2.getStringId())); in testBeginUniqueWork_replacesExistingWorkOnKeepWhenExistingWorkIsDone()
[all …]