package assert

import "go.mongodb.org/mongo-driver/internal/testutil/assert"

Index

Functions

func Equal

func Equal(t testing.TB, first, second interface{}, msg string, args ...interface{})

Equal compares first and second for equality. The objects must be of the same type. If the objects are not equal, the test will be failed with an error message containing msg and args.

func False

func False(t testing.TB, obj interface{}, msg string, args ...interface{})

False asserts that the obj parameter is a boolean with value false.

func Nil

func Nil(t testing.TB, obj interface{}, msg string, args ...interface{})

Nil asserts that the obj parameter is nil.

func NotEqual

func NotEqual(t testing.TB, first, second interface{}, msg string, args ...interface{})

NotEqual compares first and second for inequality. The objects must be of the same type.

func NotNil

func NotNil(t testing.TB, obj interface{}, msg string, args ...interface{})

NotNil asserts that the obj parameter is not nil.

func RegisterOpts

func RegisterOpts(t reflect.Type, opts ...cmp.Option)

RegisterOpts registers go-cmp options for a type. These options will be used when comparing two objects for equality.

func Soon

func Soon(t testing.TB, callback func(), timeout time.Duration)

Soon runs the provided callback for a maximum of timeoutMS milliseconds. It returns the callback error if the callback returned and ErrCallbackTimedOut if the timeout expired.

func True

func True(t testing.TB, obj interface{}, msg string, args ...interface{})

True asserts that the obj parameter is a boolean with value true.

Source Files

assert.go

Version
v1.4.5
Published
Jan 19, 2021
Platform
js/wasm
Imports
5 packages
Last checked
16 seconds ago

Tools for package owners.