Home
last modified time | relevance | path

Searched refs:doSetup (Results 1 – 11 of 11) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/
DInvocationExecutionTest.java328 mExec.doSetup(testInfo, mConfig, mMockListener); in testDoSetup()
376 mExec.doSetup(testInfo, mConfig, mMockLogger); in testDoTearDown()
443 mExec.doSetup(testInfo, mConfig, mMockLogger); in testDoTearDown_multiDevice()
475 mExec.doSetup(testInfo, mConfig, logger); in testDoTearDown_logger()
526 mExec.doSetup(testInfo, mConfig, mMockLogger); in testDoTearDown_exception()
/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/sandbox/
DParentSandboxInvocationExecutionTest.java122 mParentSandbox.doSetup(mTestInfo, mConfig, null); in testDefaultSkipSetup_tearDown()
142 mParentSandbox.doSetup(mTestInfo, mConfig, null); in testParentConfig()
166 mParentSandbox.doSetup(mTestInfo, mConfig, null); in testParentConfig_errorStage()
189 mParentSandbox.doSetup(mTestInfo, mConfig, null); in testParentConfig_exception()
/tools/tradefederation/core/src/com/android/tradefed/invoker/sandbox/
DParentSandboxInvocationExecution.java72 public void doSetup(TestInformation testInfo, IConfiguration config, ITestLogger logger) in doSetup() method in ParentSandboxInvocationExecution
80 super.doSetup(testInfo, mParentPreparerConfig, logger); in doSetup()
/tools/tradefederation/core/src/com/android/tradefed/device/
DTestDevice.java1716 IWifiHelper createWifiHelper(boolean doSetup) throws DeviceNotAvailableException { in createWifiHelper() argument
1717 if (doSetup) { in createWifiHelper()
1722 return new WifiHelper(this, mOptions.getWifiUtilAPKPath(), doSetup); in createWifiHelper()
DWifiHelper.java82 public WifiHelper(ITestDevice device, String wifiUtilApkPath, boolean doSetup) in WifiHelper() argument
85 if (doSetup) { in WifiHelper()
/tools/tradefederation/core/src/com/android/tradefed/invoker/
DIInvocationExecution.java76 public default void doSetup( in doSetup() method
DDelegatedInvocationExecution.java82 public void doSetup(TestInformation testInfo, IConfiguration config, ITestLogger listener) in doSetup() method in DelegatedInvocationExecution
DRemoteInvocationExecution.java278 public void doSetup(TestInformation testInfo, IConfiguration config, ITestLogger logger) in doSetup() method in RemoteInvocationExecution
DInvocationExecution.java220 public void doSetup(TestInformation testInfo, IConfiguration config, final ITestLogger listener) in doSetup() method in InvocationExecution
DTestInvocation.java440 invocationPath.doSetup(testInfo, config, listener); in prepareAndRun()
/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DTestDeviceTest.java4633 IWifiHelper createWifiHelper(boolean doSetup) in testPostInvocationWifiTearDown()