Skip to content

Testing

Thomas Kobber Panum edited this page Oct 17, 2018 · 3 revisions

Please stick to using Go's testing package conventions.

Before using any third party libraries for testing, please make sure they are strictly necessary.

For integration tests, use the practice described here.

TLDR: Use go test -short ./... (unit tests only) mostly. Use go test ./... for full testing suite (including integration tests).

Clone this wiki locally