blob: a97f7342a3e82b9ec22c8003e46c383da768fc15 (
plain)
1
2
3
4
5
6
7
8
9
10
|
---
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
|