518
519
// ReadHistoryBranch mocks base method.
520
>
func (m *MockExecutionManager) ReadHistoryBranch(ctx context.Context, request *ReadHistoryBranchRequest) (*ReadHistoryBranchResponse, error) {
data_interfaces_mock.go
521
>
m.ctrl.T.Helper()
522
>
ret := m.ctrl.Call(m, "ReadHistoryBranch", ctx, request)
523
>
ret0, _ := ret[0].(*ReadHistoryBranchResponse)
524
>
ret1, _ := ret[1].(error)
525
>
return ret0, ret1
526
>
}
527
528
// ReadHistoryBranch indicates an expected call of ReadHistoryBranch.
529
>
func (mr *MockExecutionManagerMockRecorder) ReadHistoryBranch(ctx, request any) *gomock.Call {
data_interfaces_mock.go
530
>
mr.mock.ctrl.T.Helper()
531
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ReadHistoryBranch", reflect.TypeOf((*MockExecutionManager)(nil).ReadHistoryBranch), ctx, request)
532
>
}
533
534
// ReadHistoryBranchByBatch mocks base method.