CommandSummaryUsage tips
mvn test -Dtest=<test-class-name>Runs all tests defined in class <test-class-name>.
  • The test class name may be qualified by package name or unqualified.
  • The class name may contain wild cards (*).
mvn test -Dtest=<test-class-name>#<test-method-name>Runs test <test-method-name> defined in class <test-class-name>.
  • The class and method names may contain wild cards (*).
   
  • No labels