HomeSort by relevance Sort by last modified time
    Searched refs:DeviceTest (Results 1 - 5 of 5) sorted by null

  /development/tools/hosttestlib/src/com/android/hosttest/
DeviceTestSuite.java 28 public class DeviceTestSuite extends TestSuite implements DeviceTest {
54 if (test instanceof DeviceTest) {
55 DeviceTest deviceTest = (DeviceTest)test;
56 deviceTest.setDevice(mDevice);
57 deviceTest.setTestAppPath(mTestDataPath);
DeviceTest.java 26 public interface DeviceTest extends Test {
DeviceTestCase.java 28 public abstract class DeviceTestCase extends TestCase implements DeviceTest {
DeviceTestRunner.java 32 * Command line interface for running DeviceTest tests.
37 * Provided test class must be a DeviceTest.
117 * Override parent to set DeviceTest data
121 if (test instanceof DeviceTest) {
122 DeviceTest deviceTest = (DeviceTest)test;
123 deviceTest.setDevice(mDevice);
124 deviceTest.setTestAppPath(mTestDataPath);
126 Log.w(LOG_TAG, String.format("%s test class is not a DeviceTest."
    [all...]
  /cts/tools/tradefed-host/src/com/android/cts/tradefed/testtype/
JarHostTest.java 193 } else if (junitTest instanceof com.android.hosttest.DeviceTest) {
196 com.android.hosttest.DeviceTest deviceTest = (com.android.hosttest.DeviceTest)junitTest;
197 deviceTest.setDevice(getDevice().getIDevice());
198 deviceTest.setTestAppPath(mCtsBuild.getTestCasesDir().getAbsolutePath());

Completed in 131 milliseconds