(self, session)
| 20 | session.ifc_info(1) |
| 21 | |
| 22 | def test_select_no_model(self, session): |
| 23 | with pytest.raises(IfcSessionError, match="No model loaded"): |
| 24 | session.ifc_select("IfcWall") |
| 25 | |
| 26 | def test_relations_no_model(self, session): |
| 27 | with pytest.raises(IfcSessionError, match="No model loaded"): |
nothing calls this directly
no test coverage detected