Home
last modified time | relevance | path

Searched refs:dragDestination (Results 1 – 4 of 4) sorted by relevance

/test/uiautomator/integration-tests/testapp/src/main/java/androidx/test/uiautomator/testapp/
DDragTestActivity.java42 TextView dragDestination = findViewById(R.id.drag_destination); in onCreate() local
55 dragDestination.getGlobalVisibleRect(destRegion); in onCreate()
57 dragDestination.setText("drag_received"); in onCreate()
/test/uiautomator/integration-tests/testapp/src/androidTest/java/androidx/test/uiautomator/testapp/
DUiObject2Test.java177 UiObject2 dragDestination = mDevice.findObject(By.res(TEST_APP, "drag_destination")); in testDrag_dest() local
178 Point dest = dragDestination.getVisibleCenter(); in testDrag_dest()
179 assertEquals("no_drag_yet", dragDestination.getText()); in testDrag_dest()
181 dragDestination.wait(Until.textEquals("drag_received"), TIMEOUT_MS); in testDrag_dest()
182 assertEquals("drag_received", dragDestination.getText()); in testDrag_dest()
191 UiObject2 dragDestination = mDevice.findObject(By.res(TEST_APP, "drag_destination")); in testDrag_destAndSpeed() local
192 Point dest = dragDestination.getVisibleCenter(); in testDrag_destAndSpeed()
193 assertEquals("no_drag_yet", dragDestination.getText()); in testDrag_destAndSpeed()
195 dragDestination.wait(Until.textEquals("drag_received"), TIMEOUT_MS); in testDrag_destAndSpeed()
196 assertEquals("drag_received", dragDestination.getText()); in testDrag_destAndSpeed()
[all …]
DUiObjectTest.java107 UiObject dragDestination = mDevice.findObject(new UiSelector().resourceId(TEST_APP + ":id" in testDragTo_destObjAndSteps() local
113 assertEquals("no_drag_yet", dragDestination.getText()); in testDragTo_destObjAndSteps()
117 assertTrue(dragButton.dragTo(dragDestination, 40)); in testDragTo_destObjAndSteps()
128 UiObject dragDestination = mDevice.findObject(new UiSelector().resourceId(TEST_APP + ":id" in testDragTo_destXAndDestYAndSteps() local
133 Rect destBounds = dragDestination.getVisibleBounds(); in testDragTo_destXAndDestYAndSteps()
135 assertEquals("no_drag_yet", dragDestination.getText()); in testDragTo_destXAndDestYAndSteps()
DUiDeviceTest.java346 UiObject2 dragDestination = mDevice.findObject(By.res(TEST_APP, "drag_destination")); in testDrag() local
349 Point end = dragDestination.getVisibleCenter(); in testDrag()
351 assertEquals("no_drag_yet", dragDestination.getText()); in testDrag()
353 assertTrue(dragDestination.wait(Until.textEquals("drag_received"), TIMEOUT_MS)); in testDrag()