Home
last modified time | relevance | path

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

/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/
DFullScreenMagnificationGestureHandlerTest.java349 final List<Integer> expectedActions = new ArrayList(); in testTwoFingersOneTap_zoomedState_dispatchMotionEvents() local
350 expectedActions.add(Integer.valueOf(ACTION_DOWN)); in testTwoFingersOneTap_zoomedState_dispatchMotionEvents()
351 expectedActions.add(Integer.valueOf(ACTION_POINTER_DOWN)); in testTwoFingersOneTap_zoomedState_dispatchMotionEvents()
352 expectedActions.add(Integer.valueOf(ACTION_POINTER_UP)); in testTwoFingersOneTap_zoomedState_dispatchMotionEvents()
353 expectedActions.add(Integer.valueOf(ACTION_UP)); in testTwoFingersOneTap_zoomedState_dispatchMotionEvents()
354 assertActionsInOrder(eventCaptor.mEvents, expectedActions); in testTwoFingersOneTap_zoomedState_dispatchMotionEvents()
376 final List<Integer> expectedActions = new ArrayList(); in testThreeFingersOneTap_zoomedState_dispatchMotionEvents() local
377 expectedActions.add(Integer.valueOf(ACTION_DOWN)); in testThreeFingersOneTap_zoomedState_dispatchMotionEvents()
378 expectedActions.add(Integer.valueOf(ACTION_POINTER_DOWN)); in testThreeFingersOneTap_zoomedState_dispatchMotionEvents()
379 expectedActions.add(Integer.valueOf(ACTION_POINTER_DOWN)); in testThreeFingersOneTap_zoomedState_dispatchMotionEvents()
[all …]
/frameworks/base/services/tests/servicestests/src/com/android/server/am/
DUserControllerTest.java232 List<String> expectedActions, Set<Integer> expectedMessageCodes) { in startUserAssertions() argument
233 assertEquals(expectedActions, getActions(mInjector.mSentIntents)); in startUserAssertions()