package client_test
import (
reflect "reflect"
gomock "github.com/golang/mock/gomock"
api "github.com/kardolus/chatgpt-cli/api"
)
type MockMCPTransport struct {
ctrl *gomock.Controller
recorder *MockMCPTransportMockRecorder
}
type MockMCPTransportMockRecorder struct {
mock *MockMCPTransport
}
func NewMockMCPTransport(ctrl *gomock.Controller) *MockMCPTransport {
mock := &MockMCPTransport{ctrl: ctrl}
mock.recorder = &MockMCPTransportMockRecorder{mock}
return mock
}
func (m *MockMCPTransport) EXPECT() *MockMCPTransportMockRecorder {
return m.recorder
}
func (m *MockMCPTransport) Call(arg0 string, arg1 api.MCPMessage, arg2 map[string]string) (api.MCPResponse, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Call", arg0, arg1, arg2)
ret0, _ := ret[0].(api.MCPResponse)
ret1, _ := ret[1].(error)
return ret0, ret1
}
func (mr *MockMCPTransportMockRecorder) Call(arg0, arg1, arg2 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Call", reflect.TypeOf((*MockMCPTransport)(nil).Call), arg0, arg1, arg2)
}