I have a method that looks like this:
[Given("I create a customer with {0} addresses")]
public void GivenICreateACustomerWithAddresses(int addressCount)
{ }
The report shows this as:
Given I create a customer with addresses 5
I would expect the variable value to be substituted into the step title and look like this:
Given I create a customer with 5 addresses