Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 469 Bytes

Testing.md

File metadata and controls

17 lines (13 loc) · 469 Bytes

Testing

Tests are handeled with the maven-surefire-plugin .

Run Integration Test

  • start the mongoDB container
    docker start mongodb
  • run all tests
    mvn integration-test

Run a Single Test

  • run StringUtil tests
    mvn integration-test -Dtest=StringUtilTest

Run a Set of Tests

  • run the test in folder unit
    mvn integration-test -Dtest=unit/*