We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
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
Both, @Nested and plain static inner classes are affected.
@Nested
static
The reason seems to be https://maven.apache.org/surefire/maven-surefire-plugin/test-mojo.html#excludes
The text was updated successfully, but these errors were encountered:
8bc5638
Ensure to run nested test classes.
b5b8cb1
Closes #1627
d10a58c
Remove excludes for maven test execution.
88ab6b6
Maven Surefire and Failsafe plugins by default do not run inner classes, no matter if they are `@Nested` or just plain static inner classes. This change removes this default exclude. Closes #1627 See https://maven.apache.org/surefire/maven-surefire-plugin/test-mojo.html#excludes
No branches or pull requests
Both,
@Nested
and plainstatic
inner classes are affected.The reason seems to be https://maven.apache.org/surefire/maven-surefire-plugin/test-mojo.html#excludes
The text was updated successfully, but these errors were encountered: