(name)
| 303 | |
| 304 | |
| 305 | def the_object_name_is_not_voided(name): |
| 306 | ifc = tool.Ifc.get() |
| 307 | element = ifc.by_id(tool.Blender.get_ifc_definition_id(the_object_name_exists(name))) |
| 308 | if any(element.HasOpenings): |
| 309 | assert False, "An opening was found" |
| 310 | |
| 311 | |
| 312 | def the_object_name_is_not_a_void(name): |
nothing calls this directly
no test coverage detected