Home
last modified time | relevance | path

Searched refs:has_test_config (Results 1 – 3 of 3) sorted by relevance

/tools/tradefederation/core/atest/test_finders/
Dmodule_finder_unittest.py108 self.mod_finder.module_info.has_test_config.return_value = True
137 self.mod_finder.module_info.has_test_config.return_value = True
190 self.mod_finder.module_info.has_test_config.return_value = True
229 self.mod_finder.module_info.has_test_config.return_value = True
260 self.mod_finder.module_info.has_test_config.return_value = True
294 self.mod_finder.module_info.has_test_config.return_value = True
336 self.mod_finder.module_info.has_test_config.return_value = True
399 self.mod_finder.module_info.has_test_config.return_value = True
438 self.mod_finder.module_info.has_test_config.return_value = True
/tools/tradefederation/core/atest/
Dmodule_info_unittest.py211 self.assertTrue(mod_info.has_test_config(info))
212 self.assertTrue(mod_info.has_test_config({}))
215 self.assertTrue(mod_info.has_test_config(info))
216 self.assertFalse(mod_info.has_test_config({}))
220 self.assertTrue(mod_info.has_test_config(info2))
Dmodule_info.py208 if mod_info.get(constants.MODULE_INSTALLED) and self.has_test_config(mod_info):
214 def has_test_config(self, mod_info): member in ModuleInfo