(self, report: TestReport, content: str, jheader: str)
| 181 | return "\n".join([header.center(80, "-"), content, ""]) |
| 182 | |
| 183 | def _write_content(self, report: TestReport, content: str, jheader: str) -> None: |
| 184 | tag = ET.Element(jheader) |
| 185 | tag.text = bin_xml_escape(content) |
| 186 | self.append(tag) |
| 187 | |
| 188 | def append_pass(self, report: TestReport) -> None: |
| 189 | self.add_stats("passed") |
no test coverage detected