(self, loaded_session)
| 83 | assert result[0]["name"] == "Wall001" |
| 84 | |
| 85 | def test_select_slabs(self, loaded_session): |
| 86 | result = loaded_session.ifc_select("IfcSlab") |
| 87 | assert len(result) == 1 |
| 88 | assert result[0]["name"] == "Slab001" |
| 89 | |
| 90 | def test_select_no_match(self, loaded_session): |
| 91 | result = loaded_session.ifc_select("IfcWindow") |
nothing calls this directly
no test coverage detected