assert:用 go、junit 风格编写的测试断言

时间:2024-07-27 06:34:26
【文件属性】:

文件名称:assert:用 go、junit 风格编写的测试断言

文件大小:4KB

文件格式:ZIP

更新时间:2024-07-27 06:34:26

Go

断言 用 go、junit 风格编写的测试断言。 用法示例: func TestCats(t *testing.T) { assert := Assert(t) cat1 := &Cat{} cat2 := &Cat{} // Cat1 and Cat2 start out as identical cats (same position, etc.) assert.Equal(cat1, cat2) // But they are not the SAME cat assert.NotSame(cat1, cat2) // However, identity should hold assert.Same(cat1, cat1) // Cat1 gets bored. cat1.Jump(3) // Now they are in d


【文件预览】:
assert-master
----.gitignore(252B)
----assert_test.go(1KB)
----LICENSE(1KB)
----README.md(1KB)
----assert.go(2KB)

网友评论