43 lines
750 B
Go
Raw Permalink Normal View History

2023-07-05 13:46:19 +00:00
package assert
import (
"reflect"
"testing"
)
// Nil asserts that the given parameter equals nil.
func Nil(t testing.TB, a any) {
if isNil(a) {
return
}
2023-07-10 09:36:17 +00:00
t.Errorf(formatOneParameter, file(), "Nil", a)
2023-07-05 13:46:19 +00:00
t.FailNow()
}
// NotNil asserts that the given parameter does not equal nil.
func NotNil(t testing.TB, a any) {
if !isNil(a) {
return
}
2023-07-10 09:36:17 +00:00
t.Errorf(formatOneParameter, file(), "NotNil", a)
2023-07-05 13:46:19 +00:00
t.FailNow()
}
// isNil returns true if the object is nil.
func isNil(object any) bool {
if object == nil {
return true
}
value := reflect.ValueOf(object)
switch value.Kind() {
case reflect.Chan, reflect.Func, reflect.Map, reflect.Ptr, reflect.UnsafePointer, reflect.Interface, reflect.Slice:
return value.IsNil()
}
return false
}