-
Notifications
You must be signed in to change notification settings - Fork 2
Commit
This commit does not belong to any branch on this repository, and may belong to a fork outside of the repository.
Signed-off-by: Konstantin Läufer <[email protected]>
- Loading branch information
Showing
1 changed file
with
41 additions
and
0 deletions.
There are no files selected for viewing
This file contains bidirectional Unicode text that may be interpreted or compiled differently than what appears below. To review, open the file in an editor that reveals hidden Unicode characters.
Learn more about bidirectional Unicode characters
Original file line number | Diff line number | Diff line change |
---|---|---|
@@ -0,0 +1,41 @@ | ||
# hello-scalatest-scala | ||
|
||
Small project to get started with Scala and ScalaTest. | ||
|
||
## Running the main program | ||
|
||
``` | ||
$ sbt run | ||
``` | ||
|
||
## Running the tests | ||
|
||
``` | ||
$ sbt test | ||
``` | ||
|
||
or | ||
|
||
``` | ||
$ sbt coverage test coverageReport | ||
``` | ||
|
||
to see the code coverage percentages of your test suite. | ||
|
||
## Running successive tasks with sbt | ||
|
||
To speed up the edit-compile-test/run cycle, you can start sbt without arguments | ||
|
||
``` | ||
$ sbt | ||
``` | ||
|
||
and repeatedly run individual tasks | ||
|
||
``` | ||
sbt> run | ||
``` | ||
|
||
``` | ||
sbt> test | ||
``` |