如何撰写XML文档,然后测试另一个数据流以比较两者的等效内容?
对于测试套件,我想调用生成XML文档的函数,并声明其结构和内容相等。
apache2.conf
PyPI库中是否已经实现了import the_real_system
test_input = make_test_data()
expected_xml_document = carefully_compose_the_expected_structure(
test_input)
real_document = the_real_system.generate_output(test_input)
assert xml_documents_are_equivalent(real_document, expected_xml_document)
?