(self, reports: Reports, output_dir: str)
| 711 | """Internal abstract class for reporters that work via XML.""" |
| 712 | |
| 713 | def __init__(self, reports: Reports, output_dir: str) -> None: |
| 714 | super().__init__(reports, output_dir) |
| 715 | |
| 716 | memory_reporter = reports.add_report("memory-xml", "<memory>") |
| 717 | assert isinstance(memory_reporter, MemoryXmlReporter) |
| 718 | # The dependency will be called first. |
| 719 | self.memory_xml = memory_reporter |
| 720 | |
| 721 | |
| 722 | class XmlReporter(AbstractXmlReporter): |
nothing calls this directly
no test coverage detected