(self)
| 47 | assert ifc_sqlite.schema == "IFC4" |
| 48 | |
| 49 | def test_by_id(self): |
| 50 | ifc_sqlite = get_ifc_sqlite() |
| 51 | assert (element := ifc_sqlite.by_id(1)) |
| 52 | assert str(element) == "#1=IFCPROJECT('3kv235yMjDO9tHiTzD8QuS',$,'My Project',$,$,$,$,(#14,#26),#9);" |
| 53 | |
| 54 | def test_by_type(self): |
| 55 | ifc_sqlite = get_ifc_sqlite() |
nothing calls this directly
no test coverage detected