Home
last modified time | relevance | path

Searched refs:mapOption (Results 1 – 2 of 2) sorted by relevance

/tools/tradefederation/core/tests/src/com/android/tradefed/config/
DConfigurationTest.java538 final MultiMap<String, Integer> mapOption = new MultiMap<>(); in testGetJsonCommandUsageMapValueExpansion() local
539 mapOption.put("foo", 1); in testGetJsonCommandUsageMapValueExpansion()
540 mapOption.put("foo", 2); in testGetJsonCommandUsageMapValueExpansion()
541 mapOption.put("foo", 3); in testGetJsonCommandUsageMapValueExpansion()
542 mapOption.put("bar", 4); in testGetJsonCommandUsageMapValueExpansion()
543 mapOption.put("bar", 5); in testGetJsonCommandUsageMapValueExpansion()
546 MultiMap<String, Integer> mMapOption = mapOption; in testGetJsonCommandUsageMapValueExpansion()
560 assertEquals(mapOption.get("foo"), jsonMapValue.get("foo")); in testGetJsonCommandUsageMapValueExpansion()
561 assertEquals(mapOption.get("bar"), jsonMapValue.get("bar")); in testGetJsonCommandUsageMapValueExpansion()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
DHostTestTest.java131 public Map<String, String> mapOption = new HashMap<>(); field in HostTestTest.TestMetricTestCase
145 if (!mapOption.isEmpty()) { in testPass2()
146 addTestMetric("map-option", mapOption.toString()); in testPass2()
195 public Map<String, String> mapOption = new HashMap<>(); field in HostTestTest.Junit4TestClass
214 if (!mapOption.isEmpty()) { in testPass6()
215 metrics.addTestMetric("map-option", mapOption.values().toString()); in testPass6()