GildedRose-Refactoring-Kata/go/readme.md
2015-10-15 22:03:47 +02: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
```