拾遗:Go单元测试

作者: 分类: 编程代码 时间:1970-01-01

拾遗:Go单元测试

概念

概要

基础测试

表格驱动测试:TableDrivenTests (https://github.com/cweill/gotests)

Mock (https://github.com/golang/mock)

  以可控的模拟对象替换真实对象,以获取测试结果

Go monkeypatching (https://github.com/bouk/monkey)


参考资料: