Я реализовал очень большое количество тестовых случаев, и я хотел бы избежать запуска их всех сразу.
Я создал свой собственный TestSuite, чтобы выбрать только несколько из них:
package com.mytests;
import junit.framework.Test;
import junit.framework.TestSuite;
import com.mytests.MyTestClass1;
import com.mytests.MyTestClass2;
import com.mytests.MyTestClass3;
public class CustomSuite extends TestSuite {
public static Test suite() {
TestSuite suite = new TestSuite();
suite.addTest(createTest(MyTestClass1.class, "test3"));
suite.addTest(createTest(MyTestClass2.class, "test2"));
suite.addTestSuite(MyTestClass3.class);
return suite;
Я могу запустить его через Eclipse (Run As >> Android JUnit Test) без каких-либо проблем.Но моя цель - запустить его через скрипт startcts.
cts_host > start --plan MyPlan -p com.mytests.CustomSuite
The specific test package does not exist: com.mytests.CustomSuite
cts_host > start --plan MyPlan -t com.mytests.CustomSuite#Test
The specific test does not exist: com.mytests.CustomSuite#Test
У меня заканчиваются идеи.Кто-нибудь знает, как это сделать?
Спасибо, Винсент