(name)
| 310 | |
| 311 | |
| 312 | def the_object_name_is_not_a_void(name): |
| 313 | ifc = tool.Ifc.get() |
| 314 | element = ifc.by_id(tool.Blender.get_ifc_definition_id(the_object_name_exists(name))) |
| 315 | if any(element.VoidsElements): |
| 316 | assert False, "A void was found" |
| 317 | |
| 318 | |
| 319 | def the_void_name_is_filled_by_filling(name, filling): |
nothing calls this directly
no test coverage detected