mirror of
https://github.com/emilybache/GildedRose-Refactoring-Kata.git
synced 2025-12-12 04:12:13 +00:00
21 lines
225 B
Markdown
21 lines
225 B
Markdown
# GO Starter
|
|
|
|
- Run :
|
|
|
|
```shell
|
|
go run texttest_feature.go gilded-rose.go
|
|
```
|
|
|
|
- Run tests :
|
|
|
|
```shell
|
|
go test
|
|
```
|
|
|
|
- Run tests and coverage :
|
|
|
|
```shell
|
|
go test -coverprofile=coverage.out
|
|
|
|
go tool cover -html=coverage.out
|
|
``` |