上卷 程序设计
中卷 标准库
- 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.2 表驱动
表驱动(table driven)将数据和逻辑分离,便于维护和扩展。
- 子测试,确保所有数据被测试。(不会因错误中断)
- 并行子测试,提高效率。
- 建议用相同命名,规范化。(让维护数据的人更易读)
- 使用短名
want/got
要比expected/actual
易读。 - 输出信息应该面向自然阅读。
func add(x, y int) int { return x + y } func TestAdd(t *testing.T) { // 数据表 var tests = []struct { x int y int want int }{ {1, 1, 2}, {2, 2, 6}, {3, 2, 5}, } // 测试 for _, tt := range tests { // 规避闭包延迟。 o := tt // 并发子测试。 t.Run("", func(t *testing.T) { t.Parallel() // 测试逻辑,匹配参数和结果。 got := add(o.x, o.y) if got != o.want { t.Errorf("add(%d, %d): want %d, got %d", o.x, o.y, o.want, got) } }) } }
$ go test -run "Add" --- FAIL: TestAdd (0.00s) --- FAIL: TestAdd/#01 (0.00s) main_test.go:29: add(2, 2): want 6, got 4 FAIL exit status 1 FAIL test 0.005s
如果你对这篇内容有疑问,欢迎到本站社区发帖提问 参与讨论,获取更多帮助,或者扫码二维码加入 Web 技术交流群。
绑定邮箱获取回复消息
由于您还没有绑定你的真实邮箱,如果其他用户或者作者回复了您的评论,将不能在第一时间通知您!
发布评论