Simple starter for getting started with TDD in Go.
The file calculator/calculator_test.go contains one test case and a few in comments. Start by coming up with a few test cases and add them to the lists, then implement them one at a time, test-driving the solution forwards.
- github.com/stretchr/testify for the assert package
There is a Makefile with some standard targets, run
$ make test
to run all the tests