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