(xml_handler: XmlParserSerializer)
| 19 | |
| 20 | @pytest.fixture() |
| 21 | def build_sample(xml_handler: XmlParserSerializer) -> tuple[BcfXml, TopicHandler]: |
| 22 | bcf = BcfXml.create_new("Test project", xml_handler=xml_handler) |
| 23 | orig_th = bcf.add_topic("Test topic", "Test message", "Test author", "Test type") |
| 24 | return bcf, orig_th |
| 25 | |
| 26 | |
| 27 | def test_bcf_roundtrip(xml_handler, build_sample) -> None: |
nothing calls this directly
no test coverage detected