(self, nodeid: Union[str, TestReport], xml: "LogXML")
| 88 | |
| 89 | class _NodeReporter: |
| 90 | def __init__(self, nodeid: Union[str, TestReport], xml: "LogXML") -> None: |
| 91 | self.id = nodeid |
| 92 | self.xml = xml |
| 93 | self.add_stats = self.xml.add_stats |
| 94 | self.family = self.xml.family |
| 95 | self.duration = 0 |
| 96 | self.properties: List[Tuple[str, str]] = [] |
| 97 | self.nodes: List[ET.Element] = [] |
| 98 | self.attrs: Dict[str, str] = {} |
| 99 | |
| 100 | def append(self, node: ET.Element) -> None: |
| 101 | self.xml.add_stats(node.tag) |
nothing calls this directly
no outgoing calls
no test coverage detected