Home
last modified time | relevance | path

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

/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/accessibility/magnification/
H A DFullScreenMagnificationGestureHandlerTest.java372 final List<Integer> expectedActions = new ArrayList(); in testTwoFingersOneTap_zoomedState_dispatchMotionEvents() local
373 expectedActions.add(Integer.valueOf(ACTION_DOWN)); in testTwoFingersOneTap_zoomedState_dispatchMotionEvents()
375 expectedActions.add(Integer.valueOf(ACTION_POINTER_UP)); in testTwoFingersOneTap_zoomedState_dispatchMotionEvents()
376 expectedActions.add(Integer.valueOf(ACTION_UP)); in testTwoFingersOneTap_zoomedState_dispatchMotionEvents()
399 final List<Integer> expectedActions = new ArrayList(); in testThreeFingersOneTap_zoomedState_dispatchMotionEvents() local
400 expectedActions.add(Integer.valueOf(ACTION_DOWN)); in testThreeFingersOneTap_zoomedState_dispatchMotionEvents()
403 expectedActions.add(Integer.valueOf(ACTION_POINTER_UP)); in testThreeFingersOneTap_zoomedState_dispatchMotionEvents()
404 expectedActions.add(Integer.valueOf(ACTION_POINTER_UP)); in testThreeFingersOneTap_zoomedState_dispatchMotionEvents()
405 expectedActions.add(Integer.valueOf(ACTION_UP)); in testThreeFingersOneTap_zoomedState_dispatchMotionEvents()
470 List<Integer> expectedActions) { in assertActionsInOrder() argument
[all …]
/aosp12/frameworks/base/services/tests/servicestests/src/com/android/server/am/
H A DUserControllerTest.java239 List<String> expectedActions, Set<Integer> expectedMessageCodes) { in startUserAssertions() argument
240 assertEquals(expectedActions, getActions(mInjector.mSentIntents)); in startUserAssertions()