Documentation
¶
Overview ¶
assert是对testing包的一些简单包装。方便在测试包里少写一点代码。
提供了两种操作方式:直接调用包函数;或是使用Assertion对象。 两种方式完全等价,可以根据自己需要,选择一种。
func TestAssert(t *testing.T) { var v interface{} = 5 // 直接调用包函数 assert.True(t, v == 5, "v的值[%v]不等于5", v) assert.Equal(t, 5, v, "v的值[%v]不等于5", v) assert.Nil(t, v) // 以Assertion对象方式使用 a := assert.New(t) a.True(v==5, "v的值[%v]不等于5", v) a.Equal(5, v, "v的值[%v]不等于5", v) a.Nil(v) a.T().Log("success") // 以函数链的形式调用Assertion对象的方法 a.True(false).Equal(5,6) }
Index ¶
- Constants
- func Contains(t *testing.T, container, item interface{}, args ...interface{})
- func Empty(t *testing.T, expr interface{}, args ...interface{})
- func Equal(t *testing.T, v1, v2 interface{}, args ...interface{})
- func Error(t *testing.T, expr interface{}, args ...interface{})
- func False(t *testing.T, expr bool, args ...interface{})
- func FileExists(t *testing.T, path string, args ...interface{})
- func FileNotExists(t *testing.T, path string, args ...interface{})
- func HasPanic(fn func()) (has bool, msg interface{})
- func IsContains(container, item interface{}) bool
- func IsEmpty(expr interface{}) bool
- func IsEqual(v1, v2 interface{}) bool
- func IsNil(expr interface{}) bool
- func Nil(t *testing.T, expr interface{}, args ...interface{})
- func NotContains(t *testing.T, container, item interface{}, args ...interface{})
- func NotEmpty(t *testing.T, expr interface{}, args ...interface{})
- func NotEqual(t *testing.T, v1, v2 interface{}, args ...interface{})
- func NotError(t *testing.T, expr interface{}, args ...interface{})
- func NotNil(t *testing.T, expr interface{}, args ...interface{})
- func NotPanic(t *testing.T, fn func(), args ...interface{})
- func Panic(t *testing.T, fn func(), args ...interface{})
- func StringEqual(t *testing.T, s1, s2 string, style int, args ...interface{})
- func StringIsEqual(s1, s2 string, style int) (ret bool)
- func StringNotEqual(t *testing.T, s1, s2 string, style int, args ...interface{})
- func True(t *testing.T, expr bool, args ...interface{})
- type Assertion
- func (a *Assertion) Contains(container, item interface{}, msg ...interface{}) *Assertion
- func (a *Assertion) Empty(expr interface{}, msg ...interface{}) *Assertion
- func (a *Assertion) Equal(v1, v2 interface{}, msg ...interface{}) *Assertion
- func (a *Assertion) Error(expr interface{}, msg ...interface{}) *Assertion
- func (a *Assertion) False(expr bool, msg ...interface{}) *Assertion
- func (a *Assertion) FileExists(path string, msg ...interface{}) *Assertion
- func (a *Assertion) FileNotExists(path string, msg ...interface{}) *Assertion
- func (a *Assertion) Nil(expr interface{}, msg ...interface{}) *Assertion
- func (a *Assertion) NotContains(container, item interface{}, msg ...interface{}) *Assertion
- func (a *Assertion) NotEmpty(expr interface{}, msg ...interface{}) *Assertion
- func (a *Assertion) NotEqual(v1, v2 interface{}, msg ...interface{}) *Assertion
- func (a *Assertion) NotError(expr interface{}, msg ...interface{}) *Assertion
- func (a *Assertion) NotNil(expr interface{}, msg ...interface{}) *Assertion
- func (a *Assertion) NotPanic(fn func(), msg ...interface{}) *Assertion
- func (a *Assertion) Panic(fn func(), msg ...interface{}) *Assertion
- func (a *Assertion) StringEqual(s1, s2 string, style int, msg ...interface{}) *Assertion
- func (a *Assertion) StringNotEqual(s1, s2 string, style int, msg ...interface{}) *Assertion
- func (a *Assertion) T() *testing.T
- func (a *Assertion) True(expr bool, msg ...interface{}) *Assertion
Constants ¶
const ( StyleStrit = 1 << iota // 严格的字符串比较,会忽略其它方式 StyleTrim // 去掉首尾空格 StyleSpace // 缩减所有的空格为一个 StyleCase // 不区分大小写 )
const Version = "0.5.11.141118"
当前库的版本号
Variables ¶
This section is empty.
Functions ¶
func FileNotExists ¶
断言文件不存在,否则输出错误信息
func HasPanic ¶
func HasPanic(fn func()) (has bool, msg interface{})
判断fn函数是否会发生panic 若发生了panic,将把msg一起返回。
func IsContains ¶
func IsContains(container, item interface{}) bool
判断container是否包含了item的内容。若是指针,会判断指针指向的内容, 但是不支持多重指针。
若container是字符串(string、[]byte和[]rune,不包含fmt.Stringer接口), 都将会以字符串的形式判断其是否包含item。 若container是个列表(array、slice、map)则判断其元素中是否包含item中的 的所有项,或是item本身就是container中的一个元素。
func IsEmpty ¶
func IsEmpty(expr interface{}) bool
判断一个值是否为空(0, "", false, 空数组等)。 []string{""}空数组里套一个空字符串,不会被判断为空。
func IsEqual ¶
func IsEqual(v1, v2 interface{}) bool
判断两个值是否相等。
除了通过reflect.DeepEqual()判断值是否相等之外,一些类似 可转换的数值也能正确判断,比如以下值也将会被判断为相等:
int8(5) == int(5) []int{1,2} == []int8{1,2} []int{1,2} == []float32{1,2} map[string]int{"1":"2":2} == map[string]int8{"1":1,"2":2} // map的键值不同,即使可相互转换也判断不相等。 map[int]int{1:1,2:2} <> map[int8]int{1:1,2:2}
func NotContains ¶
断言container不包含item的或是不包含item中的所有项
func StringEqual ¶
判断两个字符串相等。
StringEqual()与Equal()的不同之处在于: StringEqual()可以以相对宽松的条件来比较字符串是否相等, 比如忽略大小写;忽略多余的空格等,比较方式由style参数指定。 若style值指定为StyleStrit,则和Equal()完全相等。
func StringIsEqual ¶
比较两个字符串是否相等。 根据第三个参数style指定比较方式,style值可以是:
- StyleStrit
- StyleTrim
- StyleSpace
- StyleCase
func StringNotEqual ¶
判断两个字符串不相等。
Types ¶
type Assertion ¶
type Assertion struct {
// contains filtered or unexported fields
}
Assertion是对testing.T进行了简单的封装。 可以以对象的方式调用包中的各个断言函数, 减少了参数t的传递。