65 lines
2.2 KiB
Go
65 lines
2.2 KiB
Go
// Code generated by MockGen. DO NOT EDIT.
|
|
// Source: gitlab.com/manytask/itmo-go/public/distbuild/pkg/api (interfaces: Service)
|
|
|
|
// Package mock is a generated GoMock package.
|
|
package mock
|
|
|
|
import (
|
|
context "context"
|
|
gomock "github.com/golang/mock/gomock"
|
|
api "gitlab.com/manytask/itmo-go/public/distbuild/pkg/api"
|
|
build "gitlab.com/manytask/itmo-go/public/distbuild/pkg/build"
|
|
reflect "reflect"
|
|
)
|
|
|
|
// MockService is a mock of Service interface
|
|
type MockService struct {
|
|
ctrl *gomock.Controller
|
|
recorder *MockServiceMockRecorder
|
|
}
|
|
|
|
// MockServiceMockRecorder is the mock recorder for MockService
|
|
type MockServiceMockRecorder struct {
|
|
mock *MockService
|
|
}
|
|
|
|
// NewMockService creates a new mock instance
|
|
func NewMockService(ctrl *gomock.Controller) *MockService {
|
|
mock := &MockService{ctrl: ctrl}
|
|
mock.recorder = &MockServiceMockRecorder{mock}
|
|
return mock
|
|
}
|
|
|
|
// EXPECT returns an object that allows the caller to indicate expected use
|
|
func (m *MockService) EXPECT() *MockServiceMockRecorder {
|
|
return m.recorder
|
|
}
|
|
|
|
// SignalBuild mocks base method
|
|
func (m *MockService) SignalBuild(arg0 context.Context, arg1 build.ID, arg2 *api.SignalRequest) (*api.SignalResponse, error) {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "SignalBuild", arg0, arg1, arg2)
|
|
ret0, _ := ret[0].(*api.SignalResponse)
|
|
ret1, _ := ret[1].(error)
|
|
return ret0, ret1
|
|
}
|
|
|
|
// SignalBuild indicates an expected call of SignalBuild
|
|
func (mr *MockServiceMockRecorder) SignalBuild(arg0, arg1, arg2 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SignalBuild", reflect.TypeOf((*MockService)(nil).SignalBuild), arg0, arg1, arg2)
|
|
}
|
|
|
|
// StartBuild mocks base method
|
|
func (m *MockService) StartBuild(arg0 context.Context, arg1 *api.BuildRequest, arg2 api.StatusWriter) error {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "StartBuild", arg0, arg1, arg2)
|
|
ret0, _ := ret[0].(error)
|
|
return ret0
|
|
}
|
|
|
|
// StartBuild indicates an expected call of StartBuild
|
|
func (mr *MockServiceMockRecorder) StartBuild(arg0, arg1, arg2 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "StartBuild", reflect.TypeOf((*MockService)(nil).StartBuild), arg0, arg1, arg2)
|
|
}
|