(self, *args, **kwargs)
| 36 | |
| 37 | class TestCase(testcase.TestCase): |
| 38 | def __init__(self, *args, **kwargs): |
| 39 | super(TestCase, self).__init__(*args, **kwargs) |
| 40 | |
| 41 | self._source_flags = self._parse_source_flags() |
| 42 | |
| 43 | def _get_files_params(self): |
| 44 | return [ |
nothing calls this directly
no test coverage detected