blob: e9d48de695b5f3b490fff385718696cafd34bafc (
plain)
1
2
3
4
5
6
7
8
9
|
---
tags:
- golang
- howto
---
`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
|