Home
last modified time | relevance | path

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

/packages/apps/DocumentsUI/tests/functional/com/android/documentsui/
DFileDeleteUiTest.java35 import com.android.documentsui.services.TestNotificationService;
62 if (TestNotificationService.ACTION_OPERATION_RESULT.equals(action)) {
64 TestNotificationService.EXTRA_RESULT, false);
67 TestNotificationService.EXTRA_ERROR_REASON);
104 filter.addAction(TestNotificationService.ACTION_OPERATION_RESULT); in setUp()
107 TestNotificationService.ACTION_CHANGE_EXECUTION_MODE)); in setUp()
DCancelFromNotificationUiTest.java36 import com.android.documentsui.services.TestNotificationService;
60 if (TestNotificationService.ACTION_OPERATION_RESULT.equals(action)) {
62 TestNotificationService.EXTRA_RESULT, false);
65 TestNotificationService.EXTRA_ERROR_REASON);
103 filter.addAction(TestNotificationService.ACTION_OPERATION_RESULT); in setUp()
106 TestNotificationService.ACTION_CHANGE_CANCEL_MODE)); in setUp()
DFileCopyUiTest.java43 import com.android.documentsui.services.TestNotificationService;
77 if (TestNotificationService.ACTION_OPERATION_RESULT.equals(action)) {
79 TestNotificationService.EXTRA_RESULT, false);
82 TestNotificationService.EXTRA_ERROR_REASON);
166 filter.addAction(TestNotificationService.ACTION_OPERATION_RESULT); in setUp()
169 TestNotificationService.ACTION_CHANGE_EXECUTION_MODE)); in setUp()
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/bots/
DNotificationsBot.java26 import com.android.documentsui.services.TestNotificationService;
39 TestNotificationService.class); in NotificationsBot()
/packages/apps/DocumentsUI/tests/common/com/android/documentsui/services/
DTestNotificationService.java41 public class TestNotificationService extends NotificationListenerService { class