package
1.1.4
Repository: https://github.com/getstream/testify.git
Documentation: pkg.go.dev

# Functions

Run takes a testing suite and runs all of the tests attached to it.

# Structs

Suite is a basic testing suite with methods for storing and retrieving the current *testing.T context.

# Interfaces

SetupAllSuite has a SetupSuite method, which will run before the tests in the suite are run.
SetupTestSuite has a SetupTest method, which will run before each test in the suite.
TearDownAllSuite has a TearDownSuite method, which will run after all the tests in the suite have been run.
TearDownTestSuite has a TearDownTest method, which will run after each test in the suite.
TestingSuite can store and return the current *testing.T context generated by 'go test'.