在 Android 中,為拖放操作編寫單元測試需要使用 UI Automator 或 Espresso 測試框架
確保在 build.gradle
文件中添加了以下依賴項:
dependencies {
androidTestImplementation 'androidx.test.espresso:espresso-core:3.4.0'
androidTestImplementation 'androidx.test.uiautomator:uiautomator:2.2.0'
}
在 src/androidTest/java/
目錄下創(chuàng)建一個新的測試類。例如,創(chuàng)建一個名為 DragAndDropTest
的類。
在 DragAndDropTest
類中,編寫一個名為 testDragAndDrop()
的測試方法。首先,初始化 UiDevice 和 UiObject,然后使用 dragTo()
方法模擬拖動操作。
import androidx.test.ext.junit.runners.AndroidJUnit4;
import androidx.test.platform.app.InstrumentationRegistry;
import androidx.test.uiautomator.UiDevice;
import androidx.test.uiautomator.UiObject;
import androidx.test.uiautomator.UiObjectNotFoundException;
import androidx.test.uiautomator.UiSelector;
import org.junit.Test;
import org.junit.runner.RunWith;
@RunWith(AndroidJUnit4.class)
public class DragAndDropTest {
@Test
public void testDragAndDrop() throws UiObjectNotFoundException {
// Initialize UiDevice instance
UiDevice device = UiDevice.getInstance(InstrumentationRegistry.getInstrumentation());
// Find the draggable object by resource ID or text
UiObject draggableObject = device.findObject(new UiSelector().resourceId("com.example.myapp:id/draggable_object"));
// Find the target drop zone by resource ID or text
UiObject dropZone = device.findObject(new UiSelector().resourceId("com.example.myapp:id/drop_zone"));
// Perform the drag and drop operation
draggableObject.dragTo(dropZone, 10);
// Verify if the drag and drop operation was successful
// Add your own assertions here, depending on your app's behavior
}
}
在 Android Studio 中,右鍵點擊 DragAndDropTest
類,然后選擇 “Run ‘DragAndDropTest’”。測試將在連接的設(shè)備或模擬器上運行。
注意:這個示例是基于 UI Automator 的,你也可以使用 Espresso 框架來實現(xiàn)類似的功能。但是,Espresso 不支持直接的拖放操作,因此你需要使用其他方法(如模擬觸摸事件)來實現(xiàn)。