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

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

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)