328
329
// ForkHistoryBranch mocks base method.
330
>
func (m *MockExecutionManager) ForkHistoryBranch(ctx context.Context, request *ForkHistoryBranchRequest) (*ForkHistoryBranchResponse, error) {
data_interfaces_mock.go
331
>
m.ctrl.T.Helper()
332
>
ret := m.ctrl.Call(m, "ForkHistoryBranch", ctx, request)
333
>
ret0, _ := ret[0].(*ForkHistoryBranchResponse)
334
>
ret1, _ := ret[1].(error)
335
>
return ret0, ret1
336
>
}
337
338
// ForkHistoryBranch indicates an expected call of ForkHistoryBranch.
339
>
func (mr *MockExecutionManagerMockRecorder) ForkHistoryBranch(ctx, request any) *gomock.Call {
data_interfaces_mock.go
340
>
mr.mock.ctrl.T.Helper()
341
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ForkHistoryBranch", reflect.TypeOf((*MockExecutionManager)(nil).ForkHistoryBranch), ctx, request)
342
>
}
343
344
// GetAllHistoryTreeBranches mocks base method.