When I create a test suite the tests are runned twice, once independenly and in suite. [mvn test] #4327
-
How to solve that problem, that tests that are grouped in suite, only will be runned in suite, not independently? |
Beta Was this translation helpful? Give feedback.
Answered by
marcphilipp
Feb 21, 2025
Replies: 1 comment
-
One common solution is to use a naming pattern. For example, call all suites |
Beta Was this translation helpful? Give feedback.
0 replies
Answer selected by
sveridovd
Sign up for free
to join this conversation on GitHub.
Already have an account?
Sign in to comment
One common solution is to use a naming pattern. For example, call all suites
*Suite
and all tests*Tests
and configure Maven Surefire to only include the former.