(self)
| 298 | |
| 299 | class TestLink(NewFile): |
| 300 | def test_run(self): |
| 301 | ifc = ifcopenshell.file() |
| 302 | element = ifc.createIfcShapeRepresentation() |
| 303 | obj = bpy.data.meshes.new("Mesh") |
| 304 | subject.link(element, obj) |
| 305 | assert tool.Geometry.get_mesh_props(obj).ifc_definition_id == element.id() |
| 306 | |
| 307 | |
| 308 | class TestRecordObjectMaterials(NewFile): |
nothing calls this directly
no test coverage detected