How to remove parameters from the title from the method signature in an Allure report? #2863
-
Java 17 I use parameterized tests. |
Beta Was this translation helpful? Give feedback.
Answered by
baev
Jan 29, 2025
Replies: 2 comments
-
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
baev
-
Thank you! I decided the same way. |
Beta Was this translation helpful? Give feedback.
0 replies
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
You can use the regular JUnit annotations
@DisplayName
and@ParameterizedTest
.@DisplayName
annotation can be used to specify the common part of the test name, whilename
attribute of@ParameterizedTest
can be used to append parameter values to it if needed: