-
Notifications
You must be signed in to change notification settings - Fork 18
New issue
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
Code navigation fails with int wrapped with generic parameter #24
Comments
In this case, we try to match I'm not sure about the solution, should we try to replace |
Yes, I am sorry, this is a scenario outline so it should be like that : [When("I have this integer (\d+)")] Scenario outline: Examples: |
@Socolin using the first example would be the best solution, this is how the SpecFlow VisualStudio extension is working. So when building the |
I do not follow you but I have to say that the test is working fine and that it was working for a long time already. |
@LouisSimon73 yes this issue is only in the Rider analysis part, it has no effect on discovering or running the tests. |
I also did not mention that is is working fine with (.*) for some other tests that do not require the integer/string distinction |
This should be fixed in |
Hello team,
New code navigation in Rider is supper nice !
We have a small bug here.
If I define:
[When("I have this integer (\d+)")]
Then use it like that in a scenario outline:
When I have this integer
| myInteger |
| 10 |
=> The step cannot be found and I have an error.
Thank you for your work !
The text was updated successfully, but these errors were encountered: