(self, *args, **kwargs)
| 27 | |
| 28 | class TestCase(testcase.D8TestCase): |
| 29 | def __init__(self, *args, **kwargs): |
| 30 | super(TestCase, self).__init__(*args, **kwargs) |
| 31 | |
| 32 | source = self.get_source() |
| 33 | self._source_files = self._parse_source_files(source) |
| 34 | self._source_flags = self._parse_source_flags(source) |
| 35 | |
| 36 | def _parse_source_files(self, source): |
| 37 | files_list = [] # List of file names to append to command arguments. |
nothing calls this directly
no test coverage detected