mirror of
https://github.com/IfcOpenShell/IfcOpenShell.git
synced 2026-09-20 15:08:51 +00:00
7 lines
313 B
Python
7 lines
313 B
Python
from behave import step
|
|
|
|
|
|
@step('Alle "{ifc_class}" Bauteile müssen eine geometrische Repräsentation der Klasse "{representation_class}" verwenden')
|
|
def step_impl(context, ifc_class, representation_class):
|
|
context.execute_steps(f'* All {ifc_class} elements have an "{representation_class}" representation')
|