Home | History | Annotate | Download | only in email

Lines Matching refs:ids

54         final ArrayList<Long> ids = new ArrayList<Long>(); // Account id array.
57 // Kick ForEachAccount and collect IDs...
65 synchronized (ids) {
66 ids.add(accountId);
86 // Check the collected IDs.
87 synchronized (ids) {
88 assertEquals(2, ids.size());
89 // ids may not be sorted, so...
90 assertTrue(ids.contains(acct1.mId));
91 assertTrue(ids.contains(acct2.mId));