Tests execution
How to run tests
The unit tests can be executed by:
$ sbt test
How to run integration tests
Note. Installed docker is required for integration tests.
The integration tests can be executed by:
$ sbt it:test
How to calculate coverage
The coverage can be calculated by:
$ sbt clean coverage test it:test coverageReport
or
$ sbt testAll
Coverage reports will be in target/scala-2.13/scoverage-report
. There are HTML and XML reports.