-
Notifications
You must be signed in to change notification settings - Fork 95
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
Fix clicking on a ParametrizedTest #1735
Fix clicking on a ParametrizedTest #1735
Conversation
This pull request changes some projects for the first time in this development cycle.
An additional commit containing all the necessary changes was pushed to the top of this PR's branch. To obtain these changes (for example if you want to push more changes) either fetch from your fork or apply the git patch. Git patch
Further information are available in Common Build Issues - Missing version increments. |
d2dfc1f
to
cc74343
Compare
cc74343
to
f3a0f0d
Compare
When we click on the 'grouping' element for a ParametrizedTest, the code tries to find the method without the parameter types, but the search actually tries to find a parameter-less method with the same name.
Previously if the variable contained a '\0' the rest of the string was not displayed, with this fix, the rest of the string shows up too
60d0665
to
40ec14e
Compare
@jjohnstn Would you please review this one? |
@akurtakov Will do now. |
There was a problem hiding this comment.
Choose a reason for hiding this comment
The reason will be displayed to describe this comment to others. Learn more.
Looks fine.
Thanks! |
What it does
When we click on the 'grouping' element for a ParametrizedTest, the code tries to find the method without the parameter types, but the search actually tries to find a parameter-less method with the same name.
How to test
x(int)
ory(int)
testInvisibleCharacters
shows asaaa MISSING
andbbb MISSING
instead ofaaa
andbbb
Author checklist