Home
last modified time | relevance | path

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

/cts/tests/tests/provider/src/android/provider/cts/
DDocumentsContractTest.java94 private static final String DOC_GREEN = "green"; field in DocumentsContractTest
99 private static final Uri URI_GREEN = buildDocumentUri(AUTHORITY, DOC_GREEN);
259 doReturn(DOC_RESULT).when(mProvider).copyDocument(DOC_RED, DOC_GREEN); in testCopyDocument()
265 doReturn(DOC_RESULT).when(mProvider).moveDocument(DOC_RED, DOC_GREEN, DOC_BLUE); in testMoveDocument()
271 doReturn(true).when(mProvider).isChildDocument(DOC_RED, DOC_GREEN); in testIsChildDocument()
277 doReturn(false).when(mProvider).isChildDocument(DOC_RED, DOC_GREEN); in testIsChildDocument_Failure()
283 doNothing().when(mProvider).removeDocument(DOC_RED, DOC_GREEN); in testRemoveDocument()
289 doThrow(new RuntimeException()).when(mProvider).removeDocument(DOC_RED, DOC_GREEN); in testRemoveDocument_Failure()