-
Notifications
You must be signed in to change notification settings - Fork 196
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
Consider adding a @JunitParam
or something similar which would allow Arquillian to ignore the method parameter
#610
Comments
Theoretically, if there were to be multiple |
Yes, that's where I got |
I am afraid it cannot be short without compromising on clarity since stuff like |
The How to keep the compatible with the existing testing libs that already used the JUnit param injection. If we need an explicit qulifier for our Arquillian param injection, I would like to add the annotation to the Arquillian method params. eg. |
@hantsy Sorry for the delayed response. This is only an issue if there is a conflict to a parameter both JUnit and Arquillian can produce. For example, if you created a JUnit What an introduced annotation would do is act like a CDI |
Issue Overview
Both Arquillian and JUnit 5 allow for parameters to be resolved for methods. In #608 we added support for this. However, there could be cases when we want have Arquillian ignore those parameters. For those cases we should we should add parameter, something like
@JunitParam
or@ArquillianIgnore
which will allow otherParameterResolver
's to resolve the method parameter.The text was updated successfully, but these errors were encountered: