--- tags: - golang - howto - testing --- `go test` reads files ending with `_test.go`: 3 specialized functions: - Test functions; names start with Test, 1 arg. \*testing.T - Benchmarks: names start with Benchmarkt, 1 arg: \*testing.B - Example functions: names start with Example