Home
last modified time | relevance | path

Searched refs:InstrumentationTest (Results 1 – 23 of 23) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
DInstrumentationSerialTestTest.java63 final InstrumentationTest mockITest = in testRun()
64 new InstrumentationTest() { in testRun()
81 InstrumentationTest createInstrumentationTest( in testRun()
82 InstrumentationTest instrumentationTest) throws ConfigurationException { in testRun()
111 final InstrumentationTest mockITest = in testRun_runFailure()
112 new InstrumentationTest() { in testRun_runFailure()
125 InstrumentationTest createInstrumentationTest(InstrumentationTest instrumentationTest) in testRun_runFailure()
163 new InstrumentationTest(), new ArrayList<TestDescription>()); in testRun_noDevice()
181 final InstrumentationTest mockITest = in testRun_package()
182 new InstrumentationTest() { in testRun_package()
[all …]
DInstrumentationFileTestTest.java64 private InstrumentationTest mMockITest;
80 mMockITest = new InstrumentationTest() { in setUp()
116 InstrumentationTest createInstrumentationTest() { in testRun_singleSuccessfulTest()
205 InstrumentationTest createInstrumentationTest() { in testRun_reRunOneFailedToCompleteTest()
313 InstrumentationTest createInstrumentationTest() { in testRun_serialReRunOfTwoFailedToCompleteTests()
386 InstrumentationTest createInstrumentationTest() { in testRun_noSerialReRun()
499 InstrumentationTest createInstrumentationTest() { in testRun_exceedMaxAttempts()
596 InstrumentationTest createInstrumentationTest() { in testRun_parameterized()
DInstrumentationTestFuncTest.java58 private InstrumentationTest mInstrumentationTest;
74 mInstrumentationTest = new InstrumentationTest(); in setUp()
DMockInstrumentationTest.java27 public class MockInstrumentationTest extends InstrumentationTest {
DInstrumentationTestTest.java95 private InstrumentationTest mInstrumentationTest;
136 mInstrumentationTest = Mockito.spy(new InstrumentationTest()); in setUp()
727 mInstrumentationTest = Mockito.spy(new InstrumentationTest()); in testQueryMultipleRunnerName()
DInstalledInstrumentationsTestTest.java217 InstrumentationTest createInstrumentationTest() { in createInstalledInstrumentationsTest()
DAndroidJUnitTestTest.java110 mMockRemoteRunner.addInstrumentationArg(InstrumentationTest.TEST_TIMEOUT_INST_ARGS_KEY, in setUp()
/tools/tradefederation/core/src/com/android/tradefed/testtype/
DInstrumentationSerialTest.java46 private final InstrumentationTest mInstrumentationTest;
56 InstrumentationTest instrumentationTest, Collection<TestDescription> testsToRun) in InstrumentationSerialTest()
70 InstrumentationTest createInstrumentationTest(InstrumentationTest instrumentationTest) in createInstrumentationTest()
72 InstrumentationTest runner = new InstrumentationTest(); in createInstrumentationTest()
95 InstrumentationTest runner = createInstrumentationTest(mInstrumentationTest); in run()
110 InstrumentationTest runner, ITestInvocationListener listener, TestDescription testToRun) in runTest()
DInstalledInstrumentationsTest.java194 private List<InstrumentationTest> mTests = null;
237 List<InstrumentationTest> getTests() { in getTests()
295 mTests = new LinkedList<InstrumentationTest>(); in buildTests()
308 InstrumentationTest t = createInstrumentationTest(); in buildTests()
341 InstrumentationTest test = mTests.get(0); in doRun()
401 InstrumentationTest createInstrumentationTest() { in createInstrumentationTest()
404 InstrumentationTest test = new InstrumentationTest(); in createInstrumentationTest()
DInstrumentationFileTest.java54 private InstrumentationTest mInstrumentationTest = null;
75 InstrumentationTest instrumentationTest, in InstrumentationFileTest()
195 private void runTests(InstrumentationTest runner, ITestInvocationListener listener) in runTests()
221 private void reRunTestsSerially(InstrumentationTest runner, ITestInvocationListener listener) in reRunTestsSerially()
268 InstrumentationTest createInstrumentationTest() { in createInstrumentationTest()
269 return new InstrumentationTest(); in createInstrumentationTest()
DCodeCoverageTest.java42 public class CodeCoverageTest extends InstrumentationTest {
DAndroidJUnitTest.java55 public class AndroidJUnitTest extends InstrumentationTest
DInstrumentationTest.java68 public class InstrumentationTest class
/tools/tradefederation/core/src/com/android/tradefed/testtype/testdefs/
DXmlDefsTest.java31 import com.android.tradefed.testtype.InstrumentationTest;
119 private List<InstrumentationTest> mTests = null;
181 List<InstrumentationTest> getTests() { in getTests()
219 mTests = new LinkedList<InstrumentationTest>(); in buildTests()
223 InstrumentationTest test = createInstrumentationTest(); in buildTests()
279 InstrumentationTest test = mTests.get(0); in doRun()
360 InstrumentationTest createInstrumentationTest() { in createInstrumentationTest()
361 return new InstrumentationTest(); in createInstrumentationTest()
405 shard.mTests = new LinkedList<InstrumentationTest>(); in split()
409 InstrumentationTest test = mTests.remove(0); in split()
/tools/tradefederation/core/tests/src/com/android/tradefed/targetprep/
DInstrumentationPreparerTest.java27 import com.android.tradefed.testtype.InstrumentationTest;
43 private InstrumentationTest mMockITest;
62 new InstrumentationTest() { in testRun()
73 InstrumentationTest createInstrumentationTest() { in testRun()
89 new InstrumentationTest() { in testRun_testFailed()
101 InstrumentationTest createInstrumentationTest() { in testRun_testFailed()
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DInstrumentationPreparer.java31 import com.android.tradefed.testtype.InstrumentationTest;
121 final InstrumentationTest test = createInstrumentationTest(); in runInstrumentation()
163 InstrumentationTest createInstrumentationTest() { in createInstrumentationTest()
164 return new InstrumentationTest(); in createInstrumentationTest()
/tools/tradefederation/contrib/src/com/android/app/tests/
DAppLaunchTest.java31 import com.android.tradefed.testtype.InstrumentationTest;
127 InstrumentationTest i = new InstrumentationTest(); in performLaunchTest()
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/
DAtestRunner.java28 import com.android.tradefed.testtype.InstrumentationTest;
186 if (test instanceof InstrumentationTest) { in addDebugger()
187 ((InstrumentationTest) test).setDebug(true); in addDebugger()
/tools/tradefederation/contrib/src/com/android/continuous/
DSmokeTest.java29 import com.android.tradefed.testtype.InstrumentationTest;
41 public class SmokeTest extends InstrumentationTest {
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/testdefs/
DXmlDefsTestTest.java22 import com.android.tradefed.testtype.InstrumentationTest;
64 InstrumentationTest createInstrumentationTest() { in setUp()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/
DAtestRunnerTest.java34 import com.android.tradefed.testtype.InstrumentationTest;
152 assertTrue(((InstrumentationTest) test).getDebug()); in testWaitForDebugger()
DTestMappingSuiteRunnerTest.java30 import com.android.tradefed.testtype.InstrumentationTest;
181 InstrumentationTest test = in testLoadTests_testMappingsZip()
182 (InstrumentationTest) configMap.get("arm64-v8a instrument").getTests().get(0); in testLoadTests_testMappingsZip()
/tools/tradefederation/contrib/src/com/android/media/tests/
DCameraTestBase.java36 import com.android.tradefed.testtype.InstrumentationTest;
189 InstrumentationTest instr = new InstrumentationTest(); in runInstrumentationTest()