(self, obj: object, name: str)
| 392 | return False |
| 393 | |
| 394 | def istestclass(self, obj: object, name: str) -> bool: |
| 395 | return self.classnamefilter(name) or self.isnosetest(obj) |
| 396 | |
| 397 | def _matches_prefix_or_glob_option(self, option_name: str, name: str) -> bool: |
| 398 | """Check if the given name matches the prefix or glob-pattern defined |
no test coverage detected