Home
last modified time | relevance | path

Searched refs:getExtraOptions (Results 1 – 4 of 4) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/cluster/
DClusterCommandTest.java79 assertEquals(1, command.getExtraOptions().size()); in testFromJson_extraOptions()
80 assertEquals(List.of("hello", "world"), command.getExtraOptions().get("key")); in testFromJson_extraOptions()
DClusterCommandConfigBuilderTest.java213 mCommand.getExtraOptions().put("key", "hello"); in testBuild_extraOptions()
214 mCommand.getExtraOptions().put("key", "world"); in testBuild_extraOptions()
/tools/tradefederation/core/src/com/android/tradefed/cluster/
DClusterCommand.java183 public UniqueMultiMap<String, String> getExtraOptions() { in getExtraOptions() method in ClusterCommand
DClusterCommandConfigBuilder.java292 UniqueMultiMap<String, String> extraOptions = mCommand.getExtraOptions(); in build()