Home
last modified time | relevance | path

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

/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
DInstrumentationSerialTestTest.java73 final InstrumentationTest mockITest = in testRun()
74 new InstrumentationTest() { in testRun()
92 InstrumentationTest createInstrumentationTest( in testRun()
93 InstrumentationTest instrumentationTest) throws ConfigurationException { in testRun()
122 final InstrumentationTest mockITest = in testRun_runFailure()
123 new InstrumentationTest() { in testRun_runFailure()
137 InstrumentationTest createInstrumentationTest(InstrumentationTest instrumentationTest) in testRun_runFailure()
175 new InstrumentationTest(), new ArrayList<TestDescription>()); in testRun_noDevice()
193 final InstrumentationTest mockITest = in testRun_package()
194 new InstrumentationTest() { in testRun_package()
[all …]
DInstrumentationFileTestTest.java68 private InstrumentationTest mMockITest;
87 mMockITest = new InstrumentationTest() { in setUp()
128 InstrumentationTest createInstrumentationTest() { in testRun_singleSuccessfulTest()
217 InstrumentationTest createInstrumentationTest() { in testRun_reRunOneFailedToCompleteTest()
327 InstrumentationTest createInstrumentationTest() { in testRun_serialReRunOfTwoFailedToCompleteTests()
404 InstrumentationTest createInstrumentationTest() { in testRun_noSerialReRun()
517 InstrumentationTest createInstrumentationTest() { in testRun_exceedMaxAttempts()
614 InstrumentationTest createInstrumentationTest() { in testRun_parameterized()
DInstrumentationTestTest.java102 private InstrumentationTest mInstrumentationTest;
149 mInstrumentationTest = Mockito.spy(new InstrumentationTest()); in setUp()
945 mInstrumentationTest = Mockito.spy(new InstrumentationTest()); in testQueryMultipleRunnerName()
DInstrumentationTestFuncTest.java60 private InstrumentationTest mInstrumentationTest;
86 mInstrumentationTest = new InstrumentationTest(); in setUp()
DInstalledInstrumentationsTestTest.java234 InstrumentationTest createInstrumentationTest() { in createInstalledInstrumentationsTest()
DAndroidJUnitTestTest.java111 mMockRemoteRunner.addInstrumentationArg(InstrumentationTest.TEST_TIMEOUT_INST_ARGS_KEY, in setUp()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/
DInstrumentationSerialTest.java47 private final InstrumentationTest mInstrumentationTest;
57 InstrumentationTest instrumentationTest, Collection<TestDescription> testsToRun) in InstrumentationSerialTest()
71 InstrumentationTest createInstrumentationTest(InstrumentationTest instrumentationTest) in createInstrumentationTest()
73 InstrumentationTest runner = new InstrumentationTest(); in createInstrumentationTest()
96 InstrumentationTest runner = createInstrumentationTest(mInstrumentationTest); in run()
111 InstrumentationTest runner, in runTest()
DInstalledInstrumentationsTest.java223 private List<InstrumentationTest> mTests = null;
284 List<InstrumentationTest> getTests() { in getTests()
341 mTests = new LinkedList<InstrumentationTest>(); in buildTests()
354 InstrumentationTest t = createInstrumentationTest(); in buildTests()
413 InstrumentationTest test = mTests.get(0); in doRun()
452 InstrumentationTest createInstrumentationTest() { in createInstrumentationTest()
455 InstrumentationTest test = null; in createInstrumentationTest()
457 test = new InstrumentationTest(); in createInstrumentationTest()
DInstrumentationFileTest.java55 private InstrumentationTest mInstrumentationTest = null;
76 InstrumentationTest instrumentationTest, in InstrumentationFileTest()
198 InstrumentationTest runner, TestInformation testInfo, ITestInvocationListener listener) in runTests()
206 InstrumentationTest.excludeNonExecuted(testTracker.getCurrentRunResults()); in runTests()
223 InstrumentationTest runner, TestInformation testInfo, ITestInvocationListener listener) in reRunTestsSerially()
270 InstrumentationTest createInstrumentationTest() { in createInstrumentationTest()
271 return new InstrumentationTest(); in createInstrumentationTest()
DCodeCoverageTest.java43 public class CodeCoverageTest extends InstrumentationTest {
DAndroidJUnitTest.java56 public class AndroidJUnitTest extends InstrumentationTest
DInstrumentationTest.java80 public class InstrumentationTest class
/tools/tradefederation/core/tests/src/com/android/tradefed/targetprep/
DInstrumentationPreparerTest.java33 import com.android.tradefed.testtype.InstrumentationTest;
50 private InstrumentationTest mMockITest;
69 new InstrumentationTest() { in testRun()
80 InstrumentationTest createInstrumentationTest() { in testRun()
94 new InstrumentationTest() { in testRun_testFailed()
106 InstrumentationTest createInstrumentationTest() { in testRun_testFailed()
/tools/tradefederation/core/test_framework/com/android/tradefed/targetprep/
DInstrumentationPreparer.java31 import com.android.tradefed.testtype.InstrumentationTest;
122 final InstrumentationTest test = createInstrumentationTest(); in runInstrumentation()
164 InstrumentationTest createInstrumentationTest() { in createInstrumentationTest()
165 return new InstrumentationTest(); in createInstrumentationTest()
/tools/tradefederation/core/test_framework/com/android/tradefed/testtype/suite/
DAtestRunner.java29 import com.android.tradefed.testtype.InstrumentationTest;
219 if (test instanceof InstrumentationTest) { in addDebugger()
220 ((InstrumentationTest) test).setDebug(true); in addDebugger()
/tools/tradefederation/contrib/src/com/android/media/tests/
DCameraTestBase.java36 import com.android.tradefed.testtype.InstrumentationTest;
189 InstrumentationTest instr = new InstrumentationTest(); in runInstrumentationTest()
/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/suite/
DAtestRunnerTest.java34 import com.android.tradefed.testtype.InstrumentationTest;
209 assertTrue(((InstrumentationTest) test).getDebug()); in testWaitForDebugger()