推荐Golang的assert库

前端之家收集整理的这篇文章主要介绍了推荐Golang的assert库前端之家小编觉得挺不错的,现在分享给大家,也给大家做个参考。

推荐Golang的assert库

(金庆的专栏 2018.5)

https://github.com/aurelien-rainone/assertgo

Conditionally compiled assertions in Go

和C++中的assert()一样,这个是带条件编译的,必须使用 debug 才能启用。

如:

$ go run -tags debug main.go

使用示例:

assert.True(true,"never printed")

猜你在找的Go相关文章