Skip to content

Commit

Permalink
added readme
Browse files Browse the repository at this point in the history
Signed-off-by: Konstantin Läufer <[email protected]>
  • Loading branch information
klaeufer committed Sep 6, 2024
1 parent 7bf0719 commit 90964a5
Showing 1 changed file with 41 additions and 0 deletions.
41 changes: 41 additions & 0 deletions README.md
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
```

0 comments on commit 90964a5

Please sign in to comment.