(self, report: TestReport, content: str, jheader: 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) |
| 190 | tag.text = bin_xml_escape(content) |
| 191 | self.append(tag) |
| 192 | |
| 193 | def append_pass(self, report: TestReport) -> None: |
| 194 | self.add_stats("passed") |
no test coverage detected