Searched refs:mMotionEvent1 (Results 1 – 1 of 1) sorted by relevance
58 private MotionEvent mMotionEvent1; field in MotionEventTest79 mMotionEvent1 = MotionEvent.obtain(mDownTime, mEventTime, in setup()88 if (null != mMotionEvent1) { in teardown()89 mMotionEvent1.recycle(); in teardown()101 mMotionEvent1 = MotionEvent.obtain(mDownTime, mEventTime, in testObtainBasic()103 assertNotNull(mMotionEvent1); in testObtainBasic()104 assertEquals(mDownTime, mMotionEvent1.getDownTime()); in testObtainBasic()105 assertEquals(mEventTime, mMotionEvent1.getEventTime()); in testObtainBasic()106 assertEquals(MotionEvent.ACTION_DOWN, mMotionEvent1.getAction()); in testObtainBasic()107 assertEquals(X_3F, mMotionEvent1.getX(), DELTA); in testObtainBasic()[all …]