文件名称:expect:您可能不应该使用的简单断言库
文件大小:3KB
文件格式:ZIP
更新时间:2024-05-05 07:09:23
ffs oh-no uugh Go
预计 您可能不应该使用的简单断言库。 快速开始 包expect包含各种测试断言帮助器。 func TestOpenFile ( t * testing. T ) { f , err := os . Open ( "notfound" ) expect . Nil ( err ) err = f . Close () expect . True ( err == nil ) } expect可以从主测试goroutine调用的任何函数中调用帮助程序。 % go test --- FAIL: TestOpenFile (0.00s) check_test.go:12: expected: < nil> , got: open notfound: no such file or directory 请查阅以获取更
【文件预览】:
expect-master
----go.mod(38B)
----t.go(644B)
----.travis.yml(117B)
----LICENSE(1KB)
----t_test.go(522B)
----README.md(1KB)
----expect.go(679B)