Skip to content

Commit

Permalink
- Updated texts in README.md to fit current implementation.
Browse files Browse the repository at this point in the history
  • Loading branch information
miroslavpojer committed May 10, 2024
1 parent 715e9d1 commit 5fd43e7
Showing 1 changed file with 7 additions and 7 deletions.
14 changes: 7 additions & 7 deletions README.md
Original file line number Diff line number Diff line change
Expand Up @@ -149,7 +149,7 @@ sbt "project agent" jacoco
sbt "project model" jacoco
```
```sbt
sbt "project server" jacocoServer
sbt "project server" jacoco
```

Code coverage wil be generated on path:
Expand All @@ -173,27 +173,27 @@ The project uses

### Run Unit Tests
Use the `test` command to execute all tests, skipping all Integration tests.
- requires java 8 & based on sbt alias solution - exclude active
- requires java 8
```
sbt "project agent" test "project model" test
```
```
sbt "project database" test
```
- requires java 11 & based on sbt custom command solution - system property not set
- requires java 11
```
sbt "project server" test
```

### Run Integration Tests
Use the `testDB` command to execute all tests marked as Integration tests in `database` module, skipping all other tests.
- requires java 8 & based on sbt alias solution
Use the `testDB` command to execute all Integration tests in `database` module, skipping all other tests and modules
- requires java 8
```
sbt testDB
```

Use the `testIT` command to execute all tests marked as Integration tests, skipping all other tests.
- requires java 11 & based on sbt custom command solution
Use the `testIT` command to execute all Integration tests, skipping all other test types.
- requires java 11
```
sbt testIT
```
Expand Down

0 comments on commit 5fd43e7

Please sign in to comment.