assert:基于来自assertj的流畅接口的轻量级断言库

时间:2024-02-28 14:23:45
【文件属性】:

文件名称:assert:基于来自assertj的流畅接口的轻量级断言库

文件大小:10KB

文件格式:ZIP

更新时间:2024-02-28 14:23:45

testing go golang unit-testing assertions

断言 基于的流畅接口的轻量级断言库 产品特点 我们的assert库中包含的匹配器与标准Go完全兼容,并依赖于它们。 这些只是在熟悉的测试模式之上添加了一点语法语法。 要使用测试文档中的示例,以下是通常在Go中编写测试的方式: func TestAbs ( t * testing. T ) { got := Abs ( - 1 ) if got != 1 { t . Errorf ( "Abs(-1) = %d; want 1" , got ) } } 有了我们的assert包中包含的匹配器,就可以编写: import "github.com/mediaexchange-io/assert" func TestAbs ( t * testing. T ) { got := Abs ( - 1 ) assert . With (


【文件预览】:
assert-main
----matcher.go(7KB)
----.gitignore(227B)
----go.mod(51B)
----Makefile(35B)
----matcher_test.go(8KB)
----LICENSE(10KB)
----.github()
--------workflows()
----README.md(4KB)

网友评论