(self, name: str, value: object)
| 100 | self.properties.append((str(name), bin_xml_escape(value))) |
| 101 | |
| 102 | def add_attribute(self, name: str, value: object) -> None: |
| 103 | self.attrs[str(name)] = bin_xml_escape(value) |
| 104 | |
| 105 | def make_properties_node(self) -> ET.Element | None: |
| 106 | """Return a Junit node containing custom properties, if any.""" |
nothing calls this directly
no test coverage detected