Testing and Benchmarking in Go
This lesson shows how to test a program before running it and therefore how to save it from panicking beforehand.
We'll cover the following...
Testing with tool
Every new package should contain sufficient documentation and test code.
We already used Go’s testing tool go test
in ...