(context)
| 127 | |
| 128 | @when("I call placeholder.insert_chart(XL_CHART_TYPE.PIE, chart_data)") |
| 129 | def when_I_call_placeholder_insert_chart(context): |
| 130 | chart_data = CategoryChartData() |
| 131 | chart_data.categories = ["Yes", "No"] |
| 132 | chart_data.add_series("Series 1", (42, 24)) |
| 133 | placeholder = context.shape |
| 134 | context.placeholder = placeholder.insert_chart(XL_CHART_TYPE.PIE, chart_data) |
| 135 | |
| 136 | |
| 137 | @when("I call placeholder.insert_picture('{filename}')") |
nothing calls this directly
no test coverage detected
searching dependent graphs…