286
287
// DeleteHistoryBranch mocks base method.
288
>
func (m *MockExecutionManager) DeleteHistoryBranch(ctx context.Context, request *DeleteHistoryBranchRequest) error {
data_interfaces_mock.go
289
>
m.ctrl.T.Helper()
290
>
ret := m.ctrl.Call(m, "DeleteHistoryBranch", ctx, request)
291
>
ret0, _ := ret[0].(error)
292
>
return ret0
293
>
}
294
295
// DeleteHistoryBranch indicates an expected call of DeleteHistoryBranch.
296
>
func (mr *MockExecutionManagerMockRecorder) DeleteHistoryBranch(ctx, request any) *gomock.Call {
data_interfaces_mock.go
297
>
mr.mock.ctrl.T.Helper()
298
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "DeleteHistoryBranch", reflect.TypeOf((*MockExecutionManager)(nil).DeleteHistoryBranch), ctx, request)
299
>
}
300
301
// DeleteReplicationTaskFromDLQ mocks base method.