(self, exc, T, match_template, rest_template)
| 240 | self.doSplitTestUnnamed(exc, T, match_template, rest_template) |
| 241 | |
| 242 | def doSplitTest(self, exc, T, match_template, rest_template): |
| 243 | self.doSplitTestNamed(exc, T, match_template, rest_template) |
| 244 | self.doSplitTestUnnamed(exc, T, match_template, rest_template) |
| 245 | self.doSplitTestInExceptHandler(exc, T, match_template, rest_template) |
| 246 | self.doSplitTestInExceptStarHandler(exc, T, match_template, rest_template) |
| 247 | |
| 248 | def test_no_match_single_type(self): |
| 249 | self.doSplitTest( |
no test coverage detected