Home
last modified time | relevance | path

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

/platform_testing/libraries/device-collectors/src/test/platform/android/device/collectors/
DStatsdListenerTest.java115 .getConfigsFromOption(eq(StatsdListener.OPTION_CONFIGS_RUN_LEVEL)); in testRunLevelCollection_statsdInteraction()
138 .getConfigsFromOption(eq(StatsdListener.OPTION_CONFIGS_RUN_LEVEL)); in testRunLevelCollection_metrics()
198 .getConfigsFromOption(eq(StatsdListener.OPTION_CONFIGS_TEST_LEVEL)); in testTestLevelCollection_statsdInteraction()
227 .getConfigsFromOption(eq(StatsdListener.OPTION_CONFIGS_TEST_LEVEL)); in testTestLevelCollection_metrics()
300 .getConfigsFromOption(eq(StatsdListener.OPTION_CONFIGS_TEST_LEVEL)); in testTestLevelCollection_multipleTests()
352 .getConfigsFromOption(eq(StatsdListener.OPTION_CONFIGS_TEST_LEVEL)); in testTestLevelCollection_multipleIterations()
406 .getConfigsFromOption(eq(StatsdListener.OPTION_CONFIGS_RUN_LEVEL)); in testRunAndTestLevelCollection()
409 .getConfigsFromOption(eq(StatsdListener.OPTION_CONFIGS_TEST_LEVEL)); in testRunAndTestLevelCollection()
471 mListener.getConfigsFromOption(StatsdListener.OPTION_CONFIGS_RUN_LEVEL); in testParsingConfigFromArguments_validConfig()
494 mListener.getConfigsFromOption(StatsdListener.OPTION_CONFIGS_RUN_LEVEL); in testParsingConfigFromArguments_malformedConfig()
[all …]
/platform_testing/libraries/device-collectors/src/main/platform-collectors/src/android/device/collectors/
DStatsdListener.java103 mRunLevelConfigs.putAll(getConfigsFromOption(OPTION_CONFIGS_RUN_LEVEL)); in onTestRunStart()
104 mTestLevelConfigs.putAll(getConfigsFromOption(OPTION_CONFIGS_TEST_LEVEL)); in onTestRunStart()
423 protected Map<String, StatsdConfig> getConfigsFromOption(String optionName) { in getConfigsFromOption() method in StatsdListener