Home
last modified time | relevance | path

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

/cts/tests/tests/syncmanager/src/android/content/syncmanager/cts/
DCtsSyncManagerTest.java18 import static android.content.syncmanager.cts.common.Values.ACCOUNT_1_A;
158 waitUntil("Dumpsys still mentions " + ACCOUNT_1_A, DEFAULT_TIMEOUT_SECONDS, in removeAllAccounts()
159 () -> !getSyncDumpsys().contains(ACCOUNT_1_A.name)); in removeAllAccounts()
192 addAccountAndLetInitialSyncRun(ACCOUNT_1_A, APP1_AUTHORITY); in testInitialSync()
202 assertEquals(ACCOUNT_1_A.name, si.getAccountName()); in testInitialSync()
203 assertEquals(ACCOUNT_1_A.type, si.getAccountType()); in testInitialSync()
216 addAccountAndLetInitialSyncRun(ACCOUNT_1_A, APP1_AUTHORITY); in testSoftErrorRetriesActiveApp()
232 ContentResolver.requestSync(ACCOUNT_1_A, APP1_AUTHORITY, b); in testSoftErrorRetriesActiveApp()
251 addAccountAndLetInitialSyncRun(ACCOUNT_1_A, APP1_AUTHORITY); in testExpeditedJobSync()
262 ContentResolver.requestSync(ACCOUNT_1_A, APP1_AUTHORITY, b); in testExpeditedJobSync()
[all …]
/cts/tests/tests/syncmanager/common/src/android/content/syncmanager/cts/common/
DValues.java25 public static final Account ACCOUNT_1_A = new Account("accountA", APP1_PACKAGE); field in Values