Home
last modified time | relevance | path

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

/tools/asuite/atest/test_finders/
Dmodule_finder_unittest.py123 self.mod_finder.module_info.has_test_config.return_value = True
156 self.mod_finder.module_info.has_test_config.return_value = True
215 self.mod_finder.module_info.has_test_config.return_value = True
257 self.mod_finder.module_info.has_test_config.return_value = True
295 self.mod_finder.module_info.has_test_config.return_value = True
317 self.mod_finder.module_info.has_test_config.return_value = True
356 self.mod_finder.module_info.has_test_config.return_value = True
406 self.mod_finder.module_info.has_test_config.return_value = True
476 self.mod_finder.module_info.has_test_config.return_value = True
522 self.mod_finder.module_info.has_test_config.return_value = True
/tools/tradefederation/core/atest/test_finders/
Dmodule_finder_unittest.py120 self.mod_finder.module_info.has_test_config.return_value = True
153 self.mod_finder.module_info.has_test_config.return_value = True
212 self.mod_finder.module_info.has_test_config.return_value = True
254 self.mod_finder.module_info.has_test_config.return_value = True
292 self.mod_finder.module_info.has_test_config.return_value = True
314 self.mod_finder.module_info.has_test_config.return_value = True
353 self.mod_finder.module_info.has_test_config.return_value = True
403 self.mod_finder.module_info.has_test_config.return_value = True
473 self.mod_finder.module_info.has_test_config.return_value = True
519 self.mod_finder.module_info.has_test_config.return_value = True
/tools/asuite/atest/
Dmodule_info_unittest.py217 self.assertTrue(mod_info.has_test_config(info))
218 self.assertTrue(mod_info.has_test_config({}))
221 self.assertTrue(mod_info.has_test_config(info))
222 self.assertFalse(mod_info.has_test_config({}))
226 self.assertTrue(mod_info.has_test_config(info2))
Dmodule_info.py221 if mod_info.get(constants.MODULE_INSTALLED) and self.has_test_config(mod_info):
227 def has_test_config(self, mod_info): member in ModuleInfo
/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.py219 if mod_info.get(constants.MODULE_INSTALLED) and self.has_test_config(mod_info):
225 def has_test_config(self, mod_info): member in ModuleInfo
/tools/asuite/aidegen/lib/
Dnative_module_info_unittest.py267 mod_info.has_test_config(mock.Mock())
299 mod_info.has_test_config(test_data)
Dnative_module_info.py238 def has_test_config(self, mod_info): member in NativeModuleInfo