Home
last modified time | relevance | path

Searched refs:getTestInvocationListeners (Results 1 – 10 of 10) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/
DITestSuiteIntegrationTest.java401 new ResultForwarder(config.getTestInvocationListeners()).invocationStarted(mContext); in scheduleConfig()
414 test.run(new ResultForwarder(config.getTestInvocationListeners())); in scheduleConfig()
419 new ResultForwarder(config.getTestInvocationListeners()).invocationEnded(500); in scheduleConfig()
441 new ResultForwarder(config.getTestInvocationListeners()) in scheduleConfig()
460 config.getTestInvocationListeners())); in scheduleConfig()
465 new ResultForwarder(config.getTestInvocationListeners()) in scheduleConfig()
599 new ResultForwarder(config.getTestInvocationListeners()).invocationStarted(mContext); in testRun_sharding_withIndex()
608 test.run(new ResultForwarder(config.getTestInvocationListeners())); in testRun_sharding_withIndex()
610 new ResultForwarder(config.getTestInvocationListeners()).invocationEnded(500); in testRun_sharding_withIndex()
680 new ResultForwarder(config.getTestInvocationListeners()).invocationStarted(mContext); in helperTestShardIndex()
[all …]
/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/
DValidateSuiteConfigHelper.java83 if (config.getTestInvocationListeners().size() != 1) { in validateConfig()
90 if (!config.getTestInvocationListeners() in validateConfig()
/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/
DTestInvocationMultiTest.java143 EasyMock.expect(mMockConfig.getTestInvocationListeners()) in testRunBuildProvider_oneMiss()
198 EasyMock.expect(mMockConfig.getTestInvocationListeners()) in testRunBuildProvider_oneThrow()
276 EasyMock.expect(mMockConfig.getTestInvocationListeners()) in testRunBuildProvider_cleanUpThrow()
DTestInvocationTest.java785 mStubConfiguration.getTestInvocationListeners(); in testInvoke_logFileSaved()
/tools/tradefederation/core/src/com/android/tradefed/invoker/shard/
DShardHelper.java151 buildShardListeners(resultCollector, config.getTestInvocationListeners())); in rescheduleConfig()
251 for (ITestInvocationListener l : config.getTestInvocationListeners()) { in buildMasterShardListeners()
/tools/tradefederation/core/src/com/android/tradefed/config/
DIConfiguration.java81 public List<ITestInvocationListener> getTestInvocationListeners(); in getTestInvocationListeners() method
DConfiguration.java367 public List<ITestInvocationListener> getTestInvocationListeners() { in getTestInvocationListeners() method in Configuration
1296 for (ITestInvocationListener listener : getTestInvocationListeners()) { in dumpXml()
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DTestInvocation.java396 config.getTestInvocationListeners(), elapsedTime)); in resume()
604 new ArrayList<>(config.getTestInvocationListeners().size() + extraListeners.length); in invoke()
605 allListeners.addAll(config.getTestInvocationListeners()); in invoke()
/tools/tradefederation/core/tests/src/com/android/tradefed/command/
DCommandSchedulerFuncTest.java96 EasyMock.expect(mSlowConfig.getTestInvocationListeners()) in setUp()
99 EasyMock.expect(mFastConfig.getTestInvocationListeners()) in setUp()
/tools/tradefederation/core/tests/src/com/android/tradefed/config/
DConfigurationTest.java264 ITestInvocationListener defaultListener = mConfig.getTestInvocationListeners().get(0); in testGetTestInvocationListeners()
271 assertEquals(listener1, mConfig.getTestInvocationListeners().get(0)); in testGetTestInvocationListeners()