(context)
| 23 | |
| 24 | @given("a set of specific related elements") |
| 25 | def step_impl(context): |
| 26 | model = getattr(context, "model", None) |
| 27 | if not model: |
| 28 | context.model = TableModel() |
| 29 | for row in context.table: |
| 30 | context.model.add_row(row["RelatedObjects"], row["RelatingGroup"]) |
| 31 | |
| 32 | |
| 33 | @given('a set of specific related elements taken from the file "{path_file}"') |
nothing calls this directly
no test coverage detected