Skip to content

Latest commit

 

History

History
29 lines (16 loc) · 637 Bytes

README.md

File metadata and controls

29 lines (16 loc) · 637 Bytes

Overview

Very simple example including an App and a few tests (illustrating different testing styles).

Running the app

sbt run

Running the tests

sbt test

Determining test coverage

sbt clean coverage test coverageReport

Now open this file in a web browser:

target/scala-*/scoverage-report/index.html

Note that the Scala version number might vary depending on what's defined in the build configuration (build.sbt).

Running a Scala console

This allows you to explore the functionality of the classes in this project in a Scala REPL while letting sbt set the classpath for you.

sbt console