We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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
The text was updated successfully, but these errors were encountered:
Seems to work when using it like this:
[Given] [StepTitle("I create a customer with {0} addresses", includeInputsInStepTitle: false)] public void GivenICreateACustomerWithAddresses(int addressCount) { }
Sorry, something went wrong.
No branches or pull requests
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
The text was updated successfully, but these errors were encountered: