Sameer Ajmani | c8395a7 | 2015-01-09 14:02:32 -0500 | [diff] [blame] | 1 | This 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 Ajmani | b4b0f5a | 2015-01-09 14:02:49 -0500 | [diff] [blame] | 4 | - Study [Package testing](http://golang.org/pkg/testing) |
Sameer Ajmani | c8395a7 | 2015-01-09 14:02:32 -0500 | [diff] [blame] | 5 | - 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 Ajmani | 971e72f | 2015-01-12 11:23:41 -0500 | [diff] [blame] | 8 | - Read [TableDrivenTests](TableDrivenTests) |