blob: 0e867ad260e67197fed44df6a6e2dc3fe578cdcb [file] [log] [blame] [view]
Sameer Ajmanic8395a72015-01-09 14:02:32 -05001This page links to resources about testing in Go.
2
3- Read [How to Write Go Code](http://golang.org/doc/code.html), especially [Testing](https://golang.org/doc/code.html#Testing)
Sameer Ajmanib4b0f5a2015-01-09 14:02:49 -05004- Study [Package testing](http://golang.org/pkg/testing)
Sameer Ajmanic8395a72015-01-09 14:02:32 -05005- Read [Why does Go not have assertions?](http://golang.org/doc/faq#assertions)
6- Read [Where is my favorite helper function for testing?](http://golang.org/doc/faq#testing_framework)
7- Watch [Testing Techniques](https://talks.golang.org/2014/testing.slide#1)
Sameer Ajmani971e72f2015-01-12 11:23:41 -05008- Read [TableDrivenTests](TableDrivenTests)