HomeSort by relevance Sort by last modified time
    Searched defs:deviceTest (Results 1 - 3 of 3) 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);
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...]
  /tools/tradefederation/core/src/com/android/tradefed/testtype/
DeviceTestSuite.java 80 IDeviceTest deviceTest = (IDeviceTest)test;
81 deviceTest.setDevice(mDevice);

Completed in 503 milliseconds