Home
last modified time | relevance | path

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

/packages/apps/Email/tests/src/com/android/email/mail/
DStoreTests.java102 Mailbox testMailbox = new Mailbox(); in testUpdateMailbox() local
104 Store.updateMailbox(testMailbox, 1L, "inbox", '/', true, Mailbox.TYPE_MAIL); in testUpdateMailbox()
105 assertEquals(1L, testMailbox.mAccountKey); in testUpdateMailbox()
106 assertEquals("inbox", testMailbox.mDisplayName); in testUpdateMailbox()
107 assertEquals("inbox", testMailbox.mServerId); in testUpdateMailbox()
108 assertEquals('/', testMailbox.mDelimiter); in testUpdateMailbox()
110 Store.updateMailbox(testMailbox, 2L, "inbox/a", '/', true, Mailbox.TYPE_MAIL); in testUpdateMailbox()
111 assertEquals(2L, testMailbox.mAccountKey); in testUpdateMailbox()
112 assertEquals("a", testMailbox.mDisplayName); in testUpdateMailbox()
113 assertEquals("inbox/a", testMailbox.mServerId); in testUpdateMailbox()
[all …]
/packages/apps/Email/tests/src/com/android/emailcommon/provider/
DMailboxTests.java221 Mailbox testMailbox; in testRestoreMailboxWithId() local
223 testMailbox = ProviderTestUtils.setupMailbox("box1", 1, true, c, Mailbox.TYPE_MAIL); in testRestoreMailboxWithId()
225 "x", testMailbox, Mailbox.restoreMailboxWithId(c, testMailbox.mId)); in testRestoreMailboxWithId()
226 testMailbox = ProviderTestUtils.setupMailbox("box2", 1, true, c, Mailbox.TYPE_MAIL); in testRestoreMailboxWithId()
228 "x", testMailbox, Mailbox.restoreMailboxWithId(c, testMailbox.mId)); in testRestoreMailboxWithId()
237 Mailbox testMailbox; in testRestoreMailboxForPath() local
238 testMailbox = ProviderTestUtils.setupMailbox("a/b/c/box", 1, true, c, Mailbox.TYPE_MAIL); in testRestoreMailboxForPath()
240 "x", testMailbox, Mailbox.restoreMailboxForPath(c, 1, "a/b/c/box")); in testRestoreMailboxForPath()
437 Mailbox testMailbox = new Mailbox(); in buildTestMailbox() local
438 testMailbox.mServerId = serverId; in buildTestMailbox()
[all …]