Home
last modified time | relevance | path

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

/packages/apps/Email/tests/src/com/android/email/service/
DAttachmentServiceTests.java155 final AttachmentService.DownloadRequest drResult = dq.findRequestById(1); in testDownloadQueueFindRequestById() local
156 assertNotNull(drResult); in testDownloadQueueFindRequestById()
159 assertEquals(dr, drResult); in testDownloadQueueFindRequestById()
169 final AttachmentService.DownloadRequest drResult = dq.findRequestById(-1); in testDownloadQueueFindRequestByIdInvalidId() local
170 assertNull(drResult); in testDownloadQueueFindRequestByIdInvalidId()
180 final AttachmentService.DownloadRequest drResult = dq.findRequestById(5); in testDownloadQueueFindRequestByIdUnknownId() local
181 assertNull(drResult); in testDownloadQueueFindRequestByIdUnknownId()
208 AttachmentService.DownloadRequest drResult = dq.getNextRequest(); in testDownloadQueueGetNextRequest() local
209 assertEquals(dr, drResult); in testDownloadQueueGetNextRequest()
213 drResult = dq.getNextRequest(); in testDownloadQueueGetNextRequest()
[all …]