https://github.com/anav5704/test-driven-go
Learning Golang with test driven development
https://github.com/anav5704/test-driven-go
golang test-driven-development
Last synced: about 1 month ago
JSON representation
Learning Golang with test driven development
- Host: GitHub
- URL: https://github.com/anav5704/test-driven-go
- Owner: anav5704
- Created: 2024-05-11T11:11:17.000Z (about 2 years ago)
- Default Branch: main
- Last Pushed: 2024-06-29T09:09:52.000Z (about 2 years ago)
- Last Synced: 2025-08-26T06:38:56.812Z (11 months ago)
- Topics: golang, test-driven-development
- Language: Go
- Homepage:
- Size: 17.6 KB
- Stars: 0
- Watchers: 1
- Forks: 1
- Open Issues: 0
-
Metadata Files:
- Readme: README.md
Awesome Lists containing this project
README
# Test Driven Go 🔷
I had gotten tired of building Next.js apps so I decided to go a bit low level and try out Go. The book I was learning from, [Learn Go with Tests](https://quii.gitbook.io/learn-go-with-tests), was a great help and it was a nice introduction to test driven development. I highly recommend the book if you wish to try out Go too.
## Getting Started
First, make sure you have [GoLang](https://go.dev/doc/install) installed. Then, cd into the directory you want to test and run the following command:
```
go test
```
## Learning Resources
- [Go web development](https://go.dev/solutions/webdev)
- [How to learn Go](https://www.youtube.com/watch?v=OqdBixi_y1s)
- [GoLang Docs](https://go.dev/doc)