(self)
| 59 | |
| 60 | class TestEntity: |
| 61 | def test_getattr(self): |
| 62 | ifc_sqlite = get_ifc_sqlite() |
| 63 | assert (element := ifc_sqlite.by_id(1)) |
| 64 | assert element.Name == "My Project" |
| 65 | |
| 66 | def test_setattr(self): |
| 67 | ifc_sqlite = get_ifc_sqlite() |
nothing calls this directly
no test coverage detected