(self, report: TestReport, content: str, jheader: str)
| 181 | return class="st">"\n".join([header.center(80, class="st">"-"), content, class="st">""]) |
| 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(class="st">"passed") |
no test coverage detected