(self, *args, **kwargs)
| 43 | |
| 44 | class TestCase(testcase.D8TestCase): |
| 45 | def __init__(self, *args, **kwargs): |
| 46 | super(TestCase, self).__init__(*args, **kwargs) |
| 47 | |
| 48 | source = self.get_source() |
| 49 | self._source_files = self._parse_source_files(source) |
| 50 | self._source_flags = self._parse_source_flags(source) |
| 51 | |
| 52 | def _parse_source_files(self, source): |
| 53 | return [self._get_source_path()] |
nothing calls this directly
no test coverage detected