Skip to content

Latest commit

 

History

History
17 lines (13 loc) · 467 Bytes

Testing.md

File metadata and controls

17 lines (13 loc) · 467 Bytes

Testing

Unit Tests

  • run in parallel
  • no HTTP(s) connection or file touching
  • sbt task test with tests located in "test" folder

Play Tests

  • require a started play application
  • sbt task pt:test with tests located in pt folder

Integration Tests

  • sbt task it:test with tests located in it folder

Acceptance Tests