(self, *args, **kwargs)
| 36 | class TestCase(PYTestCase): |
| 37 | |
| 38 | def __init__(self, *args, **kwargs): |
| 39 | super(TestCase, self).__init__(*args, **kwargs) |
| 40 | |
| 41 | source = self.get_source() |
| 42 | self._source_files = self._parse_source_files(source) |
| 43 | self._source_flags = self._parse_source_flags(source) |
| 44 | |
| 45 | def _parse_source_files(self, source): |
| 46 | files = [] |
nothing calls this directly
no test coverage detected