(self, content: str, header: str)
| 183 | self._write_content(report, content_all, "system-out") |
| 184 | |
| 185 | def _prepare_content(self, content: str, header: str) -> str: |
| 186 | return "\n".join([header.center(80, "-"), content, ""]) |
| 187 | |
| 188 | def _write_content(self, report: TestReport, content: str, jheader: str) -> None: |
| 189 | tag = ET.Element(jheader) |
no outgoing calls
no test coverage detected