Ecosyste.ms: Awesome

An open API service indexing awesome lists of open source software.

Awesome Lists | Featured Topics | Projects

https://github.com/aldotestino/learn-go-tdd

Learn Go with Tests
https://github.com/aldotestino/learn-go-tdd

go golang tdd

Last synced: about 2 months ago
JSON representation

Learn Go with Tests

Awesome Lists containing this project

README

        

# Learn Go with Tests

### Links
- https://quii.gitbook.io/learn-go-with-tests/

### Usage
- Create a new module with
```sh
go mod init
```
- Run the program with
```sh
go run .go
```
- Run tests with
```sh
go test -v
```
- Run benchmarks with
```sh
go test -bench=.
```