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.java532 final MultiMap<String, Integer> mapOption = new MultiMap<>(); in testGetJsonCommandUsageMapValueExpansion() local
533 mapOption.put("foo", 1); in testGetJsonCommandUsageMapValueExpansion()
534 mapOption.put("foo", 2); in testGetJsonCommandUsageMapValueExpansion()
535 mapOption.put("foo", 3); in testGetJsonCommandUsageMapValueExpansion()
536 mapOption.put("bar", 4); in testGetJsonCommandUsageMapValueExpansion()
537 mapOption.put("bar", 5); in testGetJsonCommandUsageMapValueExpansion()
540 MultiMap<String, Integer> mMapOption = mapOption; in testGetJsonCommandUsageMapValueExpansion()
554 assertEquals(mapOption.get("foo"), jsonMapValue.get("foo")); in testGetJsonCommandUsageMapValueExpansion()
555 assertEquals(mapOption.get("bar"), jsonMapValue.get("bar")); in testGetJsonCommandUsageMapValueExpansion()
/tools/tradefederation/core/tests/src/com/android/tradefed/testtype/
DHostTestTest.java103 public Map<String, String> mapOption = new HashMap<>(); field in HostTestTest.TestMetricTestCase
117 if (!mapOption.isEmpty()) { in testPass2()
118 addTestMetric("map-option", mapOption.toString()); in testPass2()