shells/mock_stringQuoter.go (53 lines of code) (raw):
// Code generated by mockery v2.53.3. DO NOT EDIT.
package shells
import mock "github.com/stretchr/testify/mock"
// mockStringQuoter is an autogenerated mock type for the stringQuoter type
type mockStringQuoter struct {
mock.Mock
}
type mockStringQuoter_Expecter struct {
mock *mock.Mock
}
func (_m *mockStringQuoter) EXPECT() *mockStringQuoter_Expecter {
return &mockStringQuoter_Expecter{mock: &_m.Mock}
}
// Execute provides a mock function with given fields: _a0
func (_m *mockStringQuoter) Execute(_a0 string) string {
ret := _m.Called(_a0)
if len(ret) == 0 {
panic("no return value specified for Execute")
}
var r0 string
if rf, ok := ret.Get(0).(func(string) string); ok {
r0 = rf(_a0)
} else {
r0 = ret.Get(0).(string)
}
return r0
}
// mockStringQuoter_Execute_Call is a *mock.Call that shadows Run/Return methods with type explicit version for method 'Execute'
type mockStringQuoter_Execute_Call struct {
*mock.Call
}
// Execute is a helper method to define mock.On call
// - _a0 string
func (_e *mockStringQuoter_Expecter) Execute(_a0 interface{}) *mockStringQuoter_Execute_Call {
return &mockStringQuoter_Execute_Call{Call: _e.mock.On("Execute", _a0)}
}
func (_c *mockStringQuoter_Execute_Call) Run(run func(_a0 string)) *mockStringQuoter_Execute_Call {
_c.Call.Run(func(args mock.Arguments) {
run(args[0].(string))
})
return _c
}
func (_c *mockStringQuoter_Execute_Call) Return(_a0 string) *mockStringQuoter_Execute_Call {
_c.Call.Return(_a0)
return _c
}
func (_c *mockStringQuoter_Execute_Call) RunAndReturn(run func(string) string) *mockStringQuoter_Execute_Call {
_c.Call.Return(run)
return _c
}
// newMockStringQuoter creates a new instance of mockStringQuoter. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
// The first argument is typically a *testing.T value.
func newMockStringQuoter(t interface {
mock.TestingT
Cleanup(func())
}) *mockStringQuoter {
mock := &mockStringQuoter{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}