Ecosyste.ms: Awesome
An open API service indexing awesome lists of open source software.
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
- Host: GitHub
- URL: https://github.com/aldotestino/learn-go-tdd
- Owner: aldotestino
- License: mit
- Created: 2021-02-17T18:21:48.000Z (almost 4 years ago)
- Default Branch: master
- Last Pushed: 2022-01-23T22:32:46.000Z (almost 3 years ago)
- Last Synced: 2024-06-20T23:46:35.527Z (7 months ago)
- Topics: go, golang, tdd
- Language: Go
- Homepage:
- Size: 1.09 MB
- Stars: 0
- Watchers: 1
- Forks: 0
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
- License: LICENSE
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=.
```