Add new section testing

This commit is contained in:
Thiago Avelino 2014-07-06 12:05:37 -03:00
parent c4107508fd
commit 9b48063225

View File

@ -10,6 +10,7 @@ A curated list of awesome Go frameworks, libraries and software. Inspired by [aw
- [Database](#database) - [Database](#database)
- [Imagery](#imagery) - [Imagery](#imagery)
- [Parsers](#parsers) - [Parsers](#parsers)
- [Testing](#testing)
- [Resources](#resources) - [Resources](#resources)
- [Websites](#websites) - [Websites](#websites)
- [(e)Books](#ebooks) - [(e)Books](#ebooks)
@ -69,6 +70,17 @@ A curated list of awesome Go frameworks, libraries and software. Inspired by [aw
* [go-pkg-rss](https://github.com/jteeuwen/go-pkg-rss) - This package reads RSS and Atom feeds and provides a caching mechanism that adheres to the feed specs. * [go-pkg-rss](https://github.com/jteeuwen/go-pkg-rss) - This package reads RSS and Atom feeds and provides a caching mechanism that adheres to the feed specs.
## Testing
* [gocheck](http://labix.org/gocheck) - A more advanced testing framework alternative to gotest.
* [GoSpec](https://github.com/orfjackal/gospec) - BDD-style testing framework for the Go programming language.
* [gospecify](https://github.com/stesla/gospecify) - This provides a BDD syntax for testing your Go code. It should be familiar to anybody who has used libraries such as rspec.
* [gomock](https://code.google.com/p/gomock/) - Mocking framework for the Go programming language.
* [mockhttp.go](https://github.com/tv42/mockhttp.go) - Mock object for Go http.ResponseWriter
* [assert](https://github.com/bmizerany/assert) - Asserts to Go testing
* [Hamcrest](https://github.com/rdrdr/hamcrest) - fluent framework for declarative Matcher objects that, when applied to input values, produce self-describing results.
# Resources # Resources
Where to discover new Go libraries. Where to discover new Go libraries.