Home
last modified time | relevance | path

Searched refs:CommandOptions (Results 1 – 13 of 13) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/command/
DCommandOptionsTest.java34 CommandOptions co = new CommandOptions(); in testGetLoopTime_minset()
45 CommandOptions co = new CommandOptions(); in testGetLoopTime_maxrandomset()
58 CommandOptions co = new CommandOptions(); in testGetLoopTime_least()
DCommandSchedulerStressApp.java41 private CommandOptions mCommandOptions;
47 mCommandOptions = new CommandOptions(); in CommandSchedulerStressApp()
DCommandSchedulerFuncTest.java72 private CommandOptions mCommandOptions;
92 mCommandOptions = new CommandOptions(); in setUp()
DCommandSchedulerTest.java88 private CommandOptions mCommandOptions;
154 mCommandOptions = new CommandOptions(); in setUp()
/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/shard/
DShardHelperTest.java24 import com.android.tradefed.command.CommandOptions;
114 CommandOptions options = new CommandOptions(); in testSplitWithShardCount()
144 CommandOptions options = new CommandOptions(); in testSplit_noShardCount()
173 CommandOptions options = new CommandOptions(); in testSplitWithShardCount_notEnoughTest()
216 CommandOptions options = new CommandOptions(); in testCloneStatusChecker()
263 CommandOptions options = new CommandOptions(); in testCloneMetricCollector()
329 CommandOptions options = new CommandOptions(); in testClone_withKeystore()
389 CommandOptions options = new CommandOptions(); in testClone_withKeystore_loadingFails()
/tools/tradefederation/core/src/com/android/tradefed/command/
DCommandOptions.java29 public class CommandOptions implements ICommandOptions { class
275 CommandOptions clone = new CommandOptions(); in clone()
/tools/tradefederation/core/tests/src/com/android/tradefed/invoker/
DTestInvocationMultiTest.java22 import com.android.tradefed.command.CommandOptions;
157 EasyMock.expect(mMockConfig.getCommandOptions()).andStubReturn(new CommandOptions()); in testRunBuildProvider_oneMiss()
216 EasyMock.expect(mMockConfig.getCommandOptions()).andStubReturn(new CommandOptions()); in testRunBuildProvider_oneThrow()
294 EasyMock.expect(mMockConfig.getCommandOptions()).andStubReturn(new CommandOptions()); in testRunBuildProvider_cleanUpThrow()
DTestInvocationTest.java29 import com.android.tradefed.command.CommandOptions;
330 CommandOptions cmdOptions = new CommandOptions(); in testInvoke_buildFailed()
1101 ICommandOptions commandOption = new CommandOptions(); in testInvoke_buildProviderNeedTestTag()
1549 CommandOptions commandOption = new CommandOptions(); in testNotSkipPreDeviceSetup()
1584 CommandOptions commandOption = new CommandOptions(); in testSkipPreDeviceSetup()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
DVersionedTfLauncherTest.java23 import com.android.tradefed.command.CommandOptions;
157 EasyMock.expect(mMockConfig.getCommandOptions()).andReturn(new CommandOptions()); in testRun_singleDevice()
212 EasyMock.expect(mMockConfig.getCommandOptions()).andReturn(new CommandOptions()); in testRun_nullDevice()
267 EasyMock.expect(mMockConfig.getCommandOptions()).andReturn(new CommandOptions()); in testRun_DeviceNoPreSetup()
340 EasyMock.expect(mMockConfig.getCommandOptions()).andReturn(new CommandOptions()); in testGetTestShard()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/suite/
DValidateSuiteConfigHelperTest.java24 import com.android.tradefed.command.CommandOptions;
257 config.setConfigurationObject(ModuleDefinition.MODULE_CONTROLLER, new CommandOptions()); in testModuleController_fail()
/tools/tradefederation/core/tests/src/com/android/tradefed/config/
DConfigurationTest.java21 import com.android.tradefed.command.CommandOptions;
571 ICommandOptions option = new CommandOptions() { in testValidateOptionsShardException()
589 ICommandOptions option = new CommandOptions() { in testValidateOptionsShardIndexException()
609 ICommandOptions option = new CommandOptions() { in testValidateOptionsShardIndexAboveShardCount()
/tools/tradefederation/core/src/com/android/tradefed/config/
DConfigurationFactory.java20 import com.android.tradefed.command.CommandOptions;
495 if (listArgs.contains("--" + CommandOptions.DRY_RUN_OPTION) in createConfigurationFromArgs()
496 || listArgs.contains("--" + CommandOptions.NOISY_DRY_RUN_OPTION)) { in createConfigurationFromArgs()
DConfiguration.java20 import com.android.tradefed.command.CommandOptions;
213 setCommandOptions(new CommandOptions()); in Configuration()