📖 2 min read (~ 300 words).

Testing

Mimicks Methods From The Testing Standard Library

Assertions

GoDoc

All links point to https://pkg.go.dev/github.com/go-openapi/testify/v2

This domain exposes 2 functionalities.

Fail

Fail reports a failure through.

Examples
	assertions.Fail(t, "failed")
	failure: "failed"

FailNow

FailNow fails test.

Examples
	assertions.FailNow(t, "failed")
	failure: "failed"


Generated with github.com/go-openapi/testify/v2/codegen