All the info in a BCF is parsed correctly. Uses sample file from https://github.com/buildingSMART/BCF-XML/
()
| 9 | |
| 10 | |
| 11 | def test_doc_ref_internal() -> None: |
| 12 | """ |
| 13 | All the info in a BCF is parsed correctly. |
| 14 | |
| 15 | Uses sample file from https://github.com/buildingSMART/BCF-XML/ |
| 16 | """ |
| 17 | bcf_path = Path(__file__).parent / "Document reference internal.bcf" |
| 18 | with BcfXml.load(bcf_path) as bcf: |
| 19 | assert_everything_in_place(bcf) |
| 20 | |
| 21 | |
| 22 | def test_doc_ref_internal_save() -> None: |
nothing calls this directly
no test coverage detected