go language code note
type Level int
const (
// 严重程度从低到高
LevelDebug Level = iota
LevelInfo
LevelNotice
LevelWarning
LevelError
LevelCritical
LevelAlert
LevelEmergency
)
- 测试单个文件,要带上源文件
go test -v abc_test.go abc.go
- 测试单个方法
go test -v -test.run TestAbc
- 参考网页