文件名称:prettytest:一个简单的Go测试库
文件大小:15KB
文件格式:ZIP
更新时间:2024-03-27 12:13:01
Go
那是什么? PrettyTest是一个简单的测试库,没有花哨的东西,可以产生漂亮的输出。 特征 PrettyTest的主要功能是: 简单的断言词汇可提高可读性 通过界面可自定义的格式化程序 它与go test命令集成在一起 它可以使用检查器(实验性) 它具有报告的漂亮多彩输出 快速开始 package foo import ( "github.com/remogatto/prettytest" "testing" ) // Start of setup type testSuite struct { prettytest. Suite } func TestRunner ( t * testing. T ) { prettytest . RunWithFormatter ( t , new (prettytest. TDDFormatter ), new ( te
【文件预览】:
prettytest-master
----gocheck.go(1KB)
----.gitignore(31B)
----README.md(3KB)
----LICENSE(1KB)
----assertions.go(3KB)
----pta()
--------.gitignore(4B)
--------main.go(5KB)
----init.go(290B)
----prettytest.go(8KB)
----formatters.go(5KB)
----example()
--------example_test.go(739B)
----init_android.go(92B)
----prettytest_test.go(4KB)