(self)
| 336 | self._log_interesting += f" {name}:{log_level}" |
| 337 | |
| 338 | def check_error_log(self): |
| 339 | errors, warnings = self._error_log.get_missed() |
| 340 | assert (len(errors), len(warnings)) == (0, 0),\ |
| 341 | f"apache logged {len(errors)} errors and {len(warnings)} warnings: \n"\ |
| 342 | "{0}\n{1}\n".format("\n".join(errors), "\n".join(warnings)) |
| 343 | |
| 344 | @property |
| 345 | def curl(self) -> str: |
nothing calls this directly
no test coverage detected