Return a Junit node containing custom properties, if any.
(self)
| 694 | self.global_properties.append((name, bin_xml_escape(value))) |
| 695 | |
| 696 | def _get_global_properties_node(self) -> ET.Element | None: |
| 697 | """Return a Junit node containing custom properties, if any.""" |
| 698 | if self.global_properties: |
| 699 | properties = ET.Element("properties") |
| 700 | for name, value in self.global_properties: |
| 701 | properties.append(ET.Element("property", name=name, value=value)) |
| 702 | return properties |
| 703 | return None |
no test coverage detected