()
| 38 | |
| 39 | |
| 40 | def test_get_class_relations(): |
| 41 | uri_light_fixture = next(l for l in get_ifc_classes()["classes"] if "IfcLightFixture" == l["code"])["uri"] |
| 42 | ifc4x3_light_fixture_relations = client.get_class_properties(uri_light_fixture, True) |
| 43 | assert "Electrical unit for light-line system" and "Tubelight system" in [ |
| 44 | r["className"] for r in ifc4x3_light_fixture_relations["classRelations"] |
| 45 | ] |
| 46 | |
| 47 | |
| 48 | def test_get_class_properties(): |
nothing calls this directly
no test coverage detected