()
| 46 | |
| 47 | |
| 48 | def test_get_class_properties(): |
| 49 | uri_light_fixture = next(l for l in get_ifc_classes()["classes"] if "IfcLightFixture" == l["code"])["uri"] |
| 50 | ifc4x3_light_fixture_properties = client.get_class_properties(uri_light_fixture) |
| 51 | assert "Maintenance Factor" and "Light Fixture Mounting Type" in [ |
| 52 | l["name"] for l in ifc4x3_light_fixture_properties["classProperties"] |
| 53 | ] |
| 54 | |
| 55 | |
| 56 | def test_search_class(): |
nothing calls this directly
no test coverage detected