()
| 30 | |
| 31 | |
| 32 | def test_get_class(): |
| 33 | uri_light_fixture = next(l for l in get_ifc_classes()["classes"] if "IfcLightFixture" == l["code"])["uri"] |
| 34 | ifc4x3_light_fixture = client.get_class(uri_light_fixture) |
| 35 | assert "Maintenance Factor" and "Light Fixture Mounting Type" in [ |
| 36 | l["name"] for l in ifc4x3_light_fixture["classProperties"] |
| 37 | ] |
| 38 | |
| 39 | |
| 40 | def test_get_class_relations(): |
nothing calls this directly
no test coverage detected