Assert.assertSame(hasHandlers, tapEvent.getSource());
}
@Test
public void testSimpleTouchStartAndCancel() {
TouchStartEvent touchStartEvent = TouchTestUtil.createTouchStartEvent(1, 2);
tapRecognizer.onTouchStart(touchStartEvent);
tapRecognizer.onTouchCancel(mock(TouchCancelEvent.class));
verifyNoMoreInteractions(hasHandlers);
}