Home
last modified time | relevance | path

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

/tools/tradefederation/core/tests/src/com/android/tradefed/config/
DConfigurationFactoryTest.java80 Mockito.doReturn(new HashSet<String>()).when(spyFactory).getConfigNamesFromTestCases(null); in testLoadAllConfigs()
85 Mockito.verify(spyFactory, Mockito.times(1)).getConfigNamesFromTestCases(null); in testLoadAllConfigs()
93 Mockito.doReturn(new HashSet<String>()).when(spyFactory).getConfigNamesFromTestCases(null); in testLoadAndPrintAllConfigs()
98 Mockito.verify(spyFactory, Mockito.times(1)).getConfigNamesFromTestCases(null); in testLoadAndPrintAllConfigs()
1521 Set<String> res = spyFactory.getConfigNamesFromTestCases(null); in testGetConfigNamesFromTestCases_subpath()
1523 res = spyFactory.getConfigNamesFromTestCases(subDir.getName()); in testGetConfigNamesFromTestCases_subpath()
/tools/tradefederation/core/src/com/android/tradefed/config/
DConfigurationFactory.java657 configNames.addAll(getConfigNamesFromTestCases(subPath)); in getConfigList()
681 Set<String> getConfigNamesFromTestCases(String subPath) { in getConfigNamesFromTestCases() method in ConfigurationFactory
698 configNames.addAll(getConfigNamesFromTestCases(null)); in loadAllConfigs()