GildedRose-Refactoring-Kata/go/README.md

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
```