上卷 程序设计
中卷 标准库
- bufio 1.18
- bytes 1.18
- io 1.18
- container 1.18
- encoding 1.18
- crypto 1.18
- hash 1.18
- index 1.18
- sort 1.18
- context 1.18
- database 1.18
- connection
- query
- queryrow
- exec
- prepare
- transaction
- scan & null
- context
- tcp
- udp
- http
- server
- handler
- client
- h2、tls
- url
- rpc
- exec
- signal
- embed 1.18
- plugin 1.18
- reflect 1.18
- runtime 1.18
- KeepAlived
- ReadMemStats
- SetFinalizer
- Stack
- sync 1.18
- atomic
- mutex
- rwmutex
- waitgroup
- cond
- once
- map
- pool
- copycheck
- nocopy
- unsafe 1.18
- fmt 1.18
- log 1.18
- math 1.18
- time 1.18
- timer
下卷 运行时
源码剖析
附录
文章来源于网络收集而来,版权归原创者所有,如有侵权请及时联系!
12.1.4 其他
单元测试相关技巧及工具收集。
示例
示例代码最大用途不是测试,而是导入到 GoDoc 等工具生成的帮助文档。
比对输出( stdout
)结果和内部 output
注释是否一致来判断是否成功。
- 不能使用内置函数
print/println
,因为它们输出到stderr
。 - 没有输出注释的示例被编译,但不执行。
func ExampleAdd() { fmt.Println(add(1, 2)) fmt.Println(add(2, 2)) // Output: // 3 // 4 }
$ go test -v -run "Example" === RUN ExampleAdd --- PASS: ExampleAdd (0.00s) PASS ok test/mylib 0.005s
失败,输出如下信息。
$ go test -v -run "Example" === RUN ExampleAdd --- FAIL: ExampleAdd (0.00s) got: 3 4 want: 5 4 FAIL FAIL test/mylib 0.003s
支持无序匹配。
func ExampleAdd() { fmt.Println(add(1, 2)) fmt.Println(add(2, 2)) // Unordered output: // 4 // 3 }
入口
像 main.main 那样,为测试提供一个入口函数。
- 同样放在
_test.go
文件内。 - 为整个测试过程提供 setup/teardown 机制。
- 在 main goroutine 中执行。
func TestMain(m *testing.M) { // setup code := m.Run() // 调用测试函数。 // teardown os.Exit(code) // 注意:os.Exit 不会执行 defer。 }
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论