Lines Matching full:name
36 T = TypeVar('T') #pylint: disable=invalid-name
49 test_name: A common name or description of the test function. This can
80 Creates a description of the test case, including a name for the test
165 """The location of the data file with the specified base name."""
181 def generate_target(self, name: str, *target_args) -> None:
187 test_cases = self.targets[name](*target_args)
188 self.write_test_data_file(name, test_cases)
217 for name in sorted(generator.targets):
218 print(generator.filename_for(name))
222 print(';'.join(generator.filename_for(name)
223 for name in sorted(generator.targets)), end='')