mirror of
https://github.com/harness/drone.git
synced 2025-05-20 10:59:56 +08:00
update mock scm
This commit is contained in:
parent
3b66735fc6
commit
2a5f639e8b
@ -371,6 +371,22 @@ func (mr *MockPullRequestServiceMockRecorder) Close(arg0, arg1, arg2 interface{}
|
|||||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Close", reflect.TypeOf((*MockPullRequestService)(nil).Close), arg0, arg1, arg2)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Close", reflect.TypeOf((*MockPullRequestService)(nil).Close), arg0, arg1, arg2)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// Create mocks base method
|
||||||
|
func (m *MockPullRequestService) Create(arg0 context.Context, arg1 string, arg2 *scm.PullRequestInput) (*scm.PullRequest, *scm.Response, error) {
|
||||||
|
m.ctrl.T.Helper()
|
||||||
|
ret := m.ctrl.Call(m, "Create", arg0, arg1, arg2)
|
||||||
|
ret0, _ := ret[0].(*scm.PullRequest)
|
||||||
|
ret1, _ := ret[1].(*scm.Response)
|
||||||
|
ret2, _ := ret[2].(error)
|
||||||
|
return ret0, ret1, ret2
|
||||||
|
}
|
||||||
|
|
||||||
|
// Create indicates an expected call of Create
|
||||||
|
func (mr *MockPullRequestServiceMockRecorder) Create(arg0, arg1, arg2 interface{}) *gomock.Call {
|
||||||
|
mr.mock.ctrl.T.Helper()
|
||||||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Create", reflect.TypeOf((*MockPullRequestService)(nil).Create), arg0, arg1, arg2)
|
||||||
|
}
|
||||||
|
|
||||||
// CreateComment mocks base method
|
// CreateComment mocks base method
|
||||||
func (m *MockPullRequestService) CreateComment(arg0 context.Context, arg1 string, arg2 int, arg3 *scm.CommentInput) (*scm.Comment, *scm.Response, error) {
|
func (m *MockPullRequestService) CreateComment(arg0 context.Context, arg1 string, arg2 int, arg3 *scm.CommentInput) (*scm.Comment, *scm.Response, error) {
|
||||||
m.ctrl.T.Helper()
|
m.ctrl.T.Helper()
|
||||||
@ -663,6 +679,22 @@ func (mr *MockRepositoryServiceMockRecorder) ListStatus(arg0, arg1, arg2, arg3 i
|
|||||||
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListStatus", reflect.TypeOf((*MockRepositoryService)(nil).ListStatus), arg0, arg1, arg2, arg3)
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ListStatus", reflect.TypeOf((*MockRepositoryService)(nil).ListStatus), arg0, arg1, arg2, arg3)
|
||||||
}
|
}
|
||||||
|
|
||||||
|
// UpdateHook mocks base method
|
||||||
|
func (m *MockRepositoryService) UpdateHook(arg0 context.Context, arg1, arg2 string, arg3 *scm.HookInput) (*scm.Hook, *scm.Response, error) {
|
||||||
|
m.ctrl.T.Helper()
|
||||||
|
ret := m.ctrl.Call(m, "UpdateHook", arg0, arg1, arg2, arg3)
|
||||||
|
ret0, _ := ret[0].(*scm.Hook)
|
||||||
|
ret1, _ := ret[1].(*scm.Response)
|
||||||
|
ret2, _ := ret[2].(error)
|
||||||
|
return ret0, ret1, ret2
|
||||||
|
}
|
||||||
|
|
||||||
|
// UpdateHook indicates an expected call of UpdateHook
|
||||||
|
func (mr *MockRepositoryServiceMockRecorder) UpdateHook(arg0, arg1, arg2, arg3 interface{}) *gomock.Call {
|
||||||
|
mr.mock.ctrl.T.Helper()
|
||||||
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateHook", reflect.TypeOf((*MockRepositoryService)(nil).UpdateHook), arg0, arg1, arg2, arg3)
|
||||||
|
}
|
||||||
|
|
||||||
// MockUserService is a mock of UserService interface
|
// MockUserService is a mock of UserService interface
|
||||||
type MockUserService struct {
|
type MockUserService struct {
|
||||||
ctrl *gomock.Controller
|
ctrl *gomock.Controller
|
||||||
|
Loading…
Reference in New Issue
Block a user