完成了GDB小节的书写

This commit is contained in:
xiemengjun
2012-11-07 23:04:45 +08:00
parent b526750c2e
commit eacdde3a3f
2 changed files with 121 additions and 3 deletions

View File

@@ -1,5 +1,13 @@
# 11.3 Go怎么写测试用例
## 如何编写测试用例
func TestXXX(t *testing.T) { ... }
## 如何编写压力测试
func BenchmarkXXX(b *testing.B) { ... }
## links
* [目录](<preface.md>)
* 上一节: [使用GDB调试](<11.2.md>)