建立 UIAutomator 測試的測試套件

將 UIAutomator 測試放在測試套件中是一件很簡單的事情:

package de.androidtest.myapplication;

import org.junit.runner.RunWith;
import org.junit.runners.Suite;

@RunWith(Suite.class)
@Suite.SuiteClasses({InterAppTest1.class, InterAppTest2.class})
public class AppTestSuite {}

單擊右鍵並執行套件,執行類似於單個測試的操作。