(self, *args, **kwargs)
| 50 | |
| 51 | class TestCase(testcase.D8TestCase): |
| 52 | def __init__(self, *args, **kwargs): |
| 53 | super(TestCase, self).__init__(*args, **kwargs) |
| 54 | |
| 55 | source = self.get_source() |
| 56 | self._source_files = self._parse_source_files(source) |
| 57 | self._source_flags = self._parse_source_flags(source) |
| 58 | |
| 59 | def _parse_source_files(self, source): |
| 60 | files_list = [] # List of file names to append to command arguments. |
nothing calls this directly
no test coverage detected