DevOps / Maven Surefire Plugin Interview Questions
What naming convention does Surefire use to auto-detect test classes?
By default Surefire looks for classes matching **/Test*.java, **/*Test.java, **/*Tests.java, and **/*TestCase.java. Anything outside this pattern is invisible to Surefire unless you explicitly add it via <includes>.
More Related questions...