(self)
| 82 | |
| 83 | @property |
| 84 | def head_line(self) -> str: |
| 85 | _, _, domain = self.location |
| 86 | return f"{domain} {self._sub_test_description()}" |
| 87 | |
| 88 | def _sub_test_description(self) -> str: |
| 89 | parts = [] |
nothing calls this directly
no test coverage detected