我正在为我们使用specflow的c# .net核心应用程序接口编写一些集成测试。到目前为止,一切都很顺利,但我遇到了一个让我发疯的问题。我有以下几个场景: Scenario: Test 1When I update invoice 1 of customer 2 其方法定义如下: [When(@"I update invoice (.*) of customer (.*)]
public async Task UpdateInvoiceCustomer(int invoiceId, int customerId)...... 第二个场景如下所示: