Lines Matching full:name
25 T = TypeVar('T') #pylint: disable=invalid-name
38 test_name: A common name or description of the test function. This can
69 Creates a description of the test case, including a name for the test
154 """The location of the data file with the specified base name."""
170 def generate_target(self, name: str, *target_args) -> None:
176 test_cases = self.targets[name](*target_args)
177 self.write_test_data_file(name, test_cases)
206 for name in sorted(generator.targets):
207 print(generator.filename_for(name))
211 print(';'.join(generator.filename_for(name)
212 for name in sorted(generator.targets)), end='')