OpenGrok
Home
Sort by relevance
Sort by last modified time
Full Search
Definition
Symbol
File Path
History
|
|
Help
Searched
refs:DeviceTest
(Results
1 - 6
of
6
) 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
206
} else if (junitTest instanceof com.android.hosttest.
DeviceTest
) {
209
com.android.hosttest.
DeviceTest
deviceTest
= (com.android.hosttest.
DeviceTest
)junitTest;
210
deviceTest
.setDevice(getDevice().getIDevice());
211
deviceTest
.setTestAppPath(mCtsBuild.getTestCasesDir().getAbsolutePath());
/external/libcxx/test/
runtests.py
55
class
DeviceTest
(object):
85
tests['device'].append(
DeviceTest
(os.path.join(path, test)))
Completed in 776 milliseconds