Hello
I have written a testsuite to test an android application but I don’t succeed to run my testsuite with gradlew I can only run all my Junit test with the command line: ./gradlew connectAndroidTest --info
What command line with .gradlew should I run to only have my test suite running . My testsuite works with android studio. I have a 2.2.1 gradle version
here is my test suite:
package com.technicolor.android.tts.TS;
import com.technicolor.android.tts.dtvscan.DtvscanTest;
import com.technicolor.android.tts.zapping.ZappingTest;
import junit.framework.TestSuite;
/**
-
Created 9/11/15.
*/
public class MySuiteTest extends TestSuite {
public static TestSuite suite(){final TestSuite t = new TestSuite();
t.addTest(TestSuite.createTest(DtvscanTest.class, “test_001_Dtvscan”));
t.addTest(TestSuite.createTest(ZappingTest.class, “test_002_Zapping”));return t;
}
}