Documentation ¶
Index ¶
- type ClienterMock
- func (mock *ClienterMock) Checker(ctx context.Context, check *health.CheckState) error
- func (mock *ClienterMock) CheckerCalls() []struct{ ... }
- func (mock *ClienterMock) GetScrubber(ctx context.Context, options *sdk.Options) (*models.ScrubberResp, errors.Error)
- func (mock *ClienterMock) GetScrubberCalls() []struct{ ... }
- func (mock *ClienterMock) Health() *healthcheck.Client
- func (mock *ClienterMock) HealthCalls() []struct{}
- func (mock *ClienterMock) URL() string
- func (mock *ClienterMock) URLCalls() []struct{}
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type ClienterMock ¶
type ClienterMock struct { // CheckerFunc mocks the Checker method. CheckerFunc func(ctx context.Context, check *health.CheckState) error // GetScrubberFunc mocks the GetScrubber method. GetScrubberFunc func(ctx context.Context, options *sdk.Options) (*models.ScrubberResp, errors.Error) // HealthFunc mocks the Health method. HealthFunc func() *healthcheck.Client // URLFunc mocks the URL method. URLFunc func() string // contains filtered or unexported fields }
ClienterMock is a mock implementation of sdk.Clienter.
func TestSomethingThatUsesClienter(t *testing.T) { // make and configure a mocked sdk.Clienter mockedClienter := &ClienterMock{ CheckerFunc: func(ctx context.Context, check *health.CheckState) error { panic("mock out the Checker method") }, GetScrubberFunc: func(ctx context.Context, options *sdk.Options) (*models.ScrubberResp, errors.Error) { panic("mock out the GetScrubber method") }, HealthFunc: func() *healthcheck.Client { panic("mock out the Health method") }, URLFunc: func() string { panic("mock out the URL method") }, } // use mockedClienter in code that requires sdk.Clienter // and then make assertions. }
func (*ClienterMock) Checker ¶
func (mock *ClienterMock) Checker(ctx context.Context, check *health.CheckState) error
Checker calls CheckerFunc.
func (*ClienterMock) CheckerCalls ¶
func (mock *ClienterMock) CheckerCalls() []struct { Ctx context.Context Check *health.CheckState }
CheckerCalls gets all the calls that were made to Checker. Check the length with:
len(mockedClienter.CheckerCalls())
func (*ClienterMock) GetScrubber ¶ added in v0.3.0
func (mock *ClienterMock) GetScrubber(ctx context.Context, options *sdk.Options) (*models.ScrubberResp, errors.Error)
GetScrubber calls GetScrubberFunc.
func (*ClienterMock) GetScrubberCalls ¶ added in v0.3.0
func (mock *ClienterMock) GetScrubberCalls() []struct { Ctx context.Context Options *sdk.Options }
GetScrubberCalls gets all the calls that were made to GetScrubber. Check the length with:
len(mockedClienter.GetScrubberCalls())
func (*ClienterMock) Health ¶
func (mock *ClienterMock) Health() *healthcheck.Client
Health calls HealthFunc.
func (*ClienterMock) HealthCalls ¶
func (mock *ClienterMock) HealthCalls() []struct { }
HealthCalls gets all the calls that were made to Health. Check the length with:
len(mockedClienter.HealthCalls())
func (*ClienterMock) URLCalls ¶
func (mock *ClienterMock) URLCalls() []struct { }
URLCalls gets all the calls that were made to URL. Check the length with:
len(mockedClienter.URLCalls())
Click to show internal directories.
Click to hide internal directories.