GildedRose-Refactoring-Kata/go/README.md
2018-12-02 20:39:39 +01:00

21 lines
205 B
Markdown

# GO Starter
- Run :
```shell
go run gilded-rose.go
```
- Run tests :
```shell
go test
```
- Run tests and coverage :
```shell
go test -coverprofile=coverage.out
go tool cover -html=coverage.out
```