You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
By default, the Surefire Plugin will automatically include all test classes with the following wildcard patterns:
* "**/Test*.java" - includes all of its subdirectories and all Java filenames that start with "Test".
* "**/*Test.java" - includes all of its subdirectories and all Java filenames that end with "Test".
* "**/*Tests.java" - includes all of its subdirectories and all Java filenames that end with "Tests".
* "**/*TestCase.java" - includes all of its subdirectories and all Java filenames that end with "TestCase".
Therefore it's not required to exclude (^IT.*|.*IT)\.java tests in the configuration.
The maven-surefire documentation states:
Therefore it's not required to exclude
(^IT.*|.*IT)\.java
tests in the configuration.The text was updated successfully, but these errors were encountered: