Searched refs:test_module (Results 1 – 7 of 7) sorted by relevance
/tools/asuite/atest/ |
D | module_info_unittest_base.py | 95 return test_module( 116 return test_module( 134 return test_module( 144 return test_module( 157 return test_module( 169 def test_module( function
|
D | bazel_mode_unittest.py | 449 test_module(name='hello_world_test', installed='out/invalid/path') 479 test_module(name='hello_world_test', path='example/tests') 503 test_module(name='hello_world_test', path='example/tests') 521 test_module(name='hello_world_test', path='example/tests') 546 test_module(name='hello_world_test', path='example/tests') 713 test_module(name='hello_world_test', path='example/tests') 743 test_module(name='hello_world_test', path='example/tests') 1722 return host_only_config(test_module(**kwargs)) 1727 return device_only_config(test_module(**kwargs)) 1732 return host_only_config(robolectric(test_module(**kwargs))) [all …]
|
D | module_info_unittest.py | 239 test_module(name='Module1', compatibility_suites=['test-suite']), 240 test_module(name='Module2', compatibility_suites=['test-suite']), 241 test_module(name='Module3'), 1084 test_module(name=f'{module_name}', path=module_path), 1192 info = test_module() 1252 def test_module(**kwargs): function
|
/tools/asuite/aidegen/lib/ |
D | source_locator_unittest.py | 136 test_module = dict(unittest_constants.MODULE_INFO) 137 test_module['srcs'] = [] 140 test_module, 0) 147 test_module['depth'] = 1 149 test_module, 1) 155 test_module['class'] = ['APPS'] 156 test_module['srcjars'] = [] 158 test_module, 0) 164 test_module['srcjars'] = [('out/soong/.intermediates/packages/apps/' 167 test_module, 0) [all …]
|
D | project_file_gen_unittest.py | 87 test_module = common_util.read_file_content(self._MODULE_PATH) 91 self.assertEqual(test_module, sample_module) 97 test_module = common_util.read_file_content(self._MODULE_PATH) 102 self.assertEqual(test_module, sample_module) 205 test_module = common_util.read_file_content(self._MODULE_PATH) 206 self.assertEqual(test_module, sample_module)
|
/tools/asuite/atest/test_finders/ |
D | test_finder_utils_unittest.py | 890 test_module = 'myModule' 897 self.assertEqual(test_module, result['module_name']) 902 test_module = 'myModule' 908 self.assertEqual(test_module, result['module_name']) 913 test_module = 'myModule' 920 self.assertEqual(test_module, result['module_name']) 925 test_module = 'myModule' 932 self.assertEqual(test_module, result['module_name']) 946 test_module = 'my-module' 952 self.assertEqual(test_module, result['module_name']) [all …]
|
D | module_finder_unittest.py | 132 test_module = module_info_unittest_base.device_driven_test_module( 135 finder = self.create_finder_with_module(test_module) 164 test_module = module_info_unittest_base.device_driven_test_module( 167 finder = self.create_finder_with_module(test_module) 200 test_module = module_info_unittest_base.device_driven_test_module( 203 finder = self.create_finder_with_module(test_module) 232 test_module = ( 238 finder = self.create_finder_with_module(test_module) 276 def create_finder_with_module(self, test_module): argument 277 return module_finder.ModuleFinder(self.create_module_info([test_module])) [all …]
|