(self, model)
| 87 | assert result["name"] == "Wall001" |
| 88 | |
| 89 | def test_list(self, model): |
| 90 | walls = model.by_type("IfcWall") |
| 91 | result = serialize_result(walls) |
| 92 | assert isinstance(result, list) |
| 93 | assert all(isinstance(r, dict) for r in result) |
| 94 | |
| 95 | def test_dict(self): |
| 96 | result = serialize_result({"key": "value"}) |
nothing calls this directly
no test coverage detected