563
564
// ReadRawHistoryBranch mocks base method.
565
>
func (m *MockExecutionManager) ReadRawHistoryBranch(ctx context.Context, request *ReadHistoryBranchRequest) (*ReadRawHistoryBranchResponse, error) {
data_interfaces_mock.go
566
>
m.ctrl.T.Helper()
567
>
ret := m.ctrl.Call(m, "ReadRawHistoryBranch", ctx, request)
568
>
ret0, _ := ret[0].(*ReadRawHistoryBranchResponse)
569
>
ret1, _ := ret[1].(error)
570
>
return ret0, ret1
571
>
}
572
573
// ReadRawHistoryBranch indicates an expected call of ReadRawHistoryBranch.
574
>
func (mr *MockExecutionManagerMockRecorder) ReadRawHistoryBranch(ctx, request any) *gomock.Call {
data_interfaces_mock.go
575
>
mr.mock.ctrl.T.Helper()
576
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ReadRawHistoryBranch", reflect.TypeOf((*MockExecutionManager)(nil).ReadRawHistoryBranch), ctx, request)
577
>
}
578
579
// SetWorkflowExecution mocks base method.