Documentation ¶
Index ¶
- type MockVerifier
- func (m MockVerifier) Equal(t apitest.TestingT, expected, actual interface{}, msgAndArgs ...interface{}) bool
- func (m MockVerifier) Fail(t apitest.TestingT, failureMessage string, msgAndArgs ...interface{}) bool
- func (m MockVerifier) JSONEq(t apitest.TestingT, expected string, actual string, msgAndArgs ...interface{}) bool
- func (m MockVerifier) NoError(t apitest.TestingT, err error, msgAndArgs ...interface{}) bool
- func (m MockVerifier) True(t apitest.TestingT, val bool, msgAndArgs ...interface{}) bool
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MockVerifier ¶
type MockVerifier struct { EqualFn func(t apitest.TestingT, expected, actual interface{}, msgAndArgs ...interface{}) bool EqualInvoked bool TrueFn func(t apitest.TestingT, val bool, msgAndArgs ...interface{}) bool TrueInvoked bool JSONEqFn func(t apitest.TestingT, expected string, actual string, msgAndArgs ...interface{}) bool JSONEqInvoked bool FailFn func(t apitest.TestingT, failureMessage string, msgAndArgs ...interface{}) bool FailInvoked bool NoErrorFn func(t apitest.TestingT, err error, msgAndArgs ...interface{}) bool NoErrorInvoked bool }
MockVerifier is a mock of the Verifier interface that is used in tests of apitest
func NewVerifier ¶
func NewVerifier() MockVerifier
func (MockVerifier) Equal ¶
func (m MockVerifier) Equal(t apitest.TestingT, expected, actual interface{}, msgAndArgs ...interface{}) bool
Equal mocks the Equal method of the Verifier
func (MockVerifier) Fail ¶
func (m MockVerifier) Fail(t apitest.TestingT, failureMessage string, msgAndArgs ...interface{}) bool
Fail mocks the Fail method of the Verifier
func (MockVerifier) JSONEq ¶
func (m MockVerifier) JSONEq(t apitest.TestingT, expected string, actual string, msgAndArgs ...interface{}) bool
JSONEq mocks the JSONEq method of the Verifier
Click to show internal directories.
Click to hide internal directories.