Home
last modified time | relevance | path

Searched refs:getOptions (Results 1 – 12 of 12) sorted by relevance

/tools/tradefederation/core/src/com/android/tradefed/testtype/suite/
DTestMappingSuiteRunner.java82 for (TestMapping.TestOption option : test.getOptions()) { in loadTests()
/tools/tradefederation/core/src/com/android/tradefed/testtype/junit4/
DLongevityHostRunner.java132 private Map<String, String> getOptions() { in getOptions() method in LongevityHostRunner
176 mSuiteKlass, new DeviceJUnit4ClassRunnerBuilder(), getOptions()); in constructSuite()
/tools/tradefederation/core/tests/src/com/android/tradefed/device/
DNativeDeviceTest.java681 EasyMock.expect(mMockWifi.checkConnectivity(mTestDevice.getOptions().getConnCheckUrl())) in testConnectToWifiNetworkIfNeeded_alreadyConnected()
694 mTestDevice.getOptions().getConnCheckUrl(), false)).andReturn(true); in testConnectToWifiNetwork_success()
710 mTestDevice.getOptions().getConnCheckUrl(), false)).andReturn(false) in testConnectToWifiNetwork_failure()
711 .times(mTestDevice.getOptions().getWifiAttempts()); in testConnectToWifiNetwork_failure()
715 .times(mTestDevice.getOptions().getWifiAttempts()); in testConnectToWifiNetwork_failure()
717 EasyMock.expectLastCall().times(mTestDevice.getOptions().getWifiAttempts() - 1); in testConnectToWifiNetwork_failure()
730 OptionSetter deviceOptionSetter = new OptionSetter(mTestDevice.getOptions()); in testConnectToWifiNetwork_maxConnectTime()
738 mTestDevice.getOptions().getConnCheckUrl(), in testConnectToWifiNetwork_maxConnectTime()
759 mTestDevice.getOptions().getConnCheckUrl(), true)).andReturn(true); in testConnectToWifiNetwork_scanSsid()
776 EasyMock.expect(mMockWifi.checkConnectivity(mTestDevice.getOptions().getConnCheckUrl())) in testCheckWifiConnection()
[all …]
DTestDeviceTest.java192 boolean enableRoot = mTestDevice.getOptions().isEnableAdbRoot(); in testEnableAdbRoot_noEnableRoot()
193 OptionSetter setter = new OptionSetter(mTestDevice.getOptions()); in testEnableAdbRoot_noEnableRoot()
1157 mTestDevice.getOptions().setUseFastbootErase(true); in testUnencryptDevice_wipe()
/tools/tradefederation/core/tests/src/com/android/tradefed/util/
DTestMappingTest.java61 TestMapping.TestOption option = tests.get(0).getOptions().get(0); in testparseTestMapping()
/tools/tradefederation/core/src/com/android/tradefed/device/
DITestDevice.java356 public TestDeviceOptions getOptions(); in getOptions() method
DNativeDevice.java3385 public TestDeviceOptions getOptions() { in getOptions() method in NativeDevice
/tools/tradefederation/core/src/com/android/tradefed/util/
DTestMapping.java83 public List<TestOption> getOptions() { in getOptions() method in TestMapping.TestInfo
/tools/tradefederation/core/tests/src/com/android/tradefed/targetprep/
DDeviceFlashPreparerTest.java68 EasyMock.expect(mMockDevice.getOptions()).andReturn(new TestDeviceOptions()).anyTimes(); in setUp()
DDeviceSetupTest.java1163 EasyMock.expect(mMockDevice.getOptions()).andReturn(options).once(); in doSetupExpectations()
/tools/metalava/gradle/wrapper/
Dgradle-wrapper.jarMETA-INF/ META-INF/MANIFEST.MF org/ org/gradle/ org/ ...
/tools/tradefederation/core/src/com/android/tradefed/targetprep/
DDeviceSetup.java423 if (device.getOptions().isEnableAdbRoot() && !device.enableAdbRoot()) { in setUp()