-
-
Notifications
You must be signed in to change notification settings - Fork 1.5k
New issue
Have a question about this project? # for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “#”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? # to your account
Is there a corresponding concept of JUnit4's @Parameters #505
Comments
You are correct in your analysis: |
Closing this issue as a duplicate. |
I had a look into |
Rest assured, we're working on it! We plan to address this in the next milestone release. |
In JUnit 4 tests could be run as
Parameterized
. These test class had to define a method annotated with@Parameters
. This method would return a set of parameters and the tests in the test class would be executed for every tuple of parameters. Do we have the same concept in JUnit 5?I understand that with the
Extensions
API I can either define aTestPostProcessor
or aParameterResolver
. But none of these will allow me do run the same test cases for different parameters, do they?Should I rather use a
@TestFactory
for this purpose?The text was updated successfully, but these errors were encountered: