Versions Compared

Key

  • This line was added.
  • This line was removed.
  • Formatting was changed.

...

Normal tests are run from the command-line using a syntax like this:

 

Code Block
languagebash
mvn test -Dtest=ClassNameOfTest

Integration tests are run from the integration-tests module directory with this syntax:

Code Block
languagebash
mvn verify -Dit.test=ClassNameOfTest

In both cases, the class should be provided without the package name.

More information about running integration tests can be found here.

...