363
364
// UpdateWorkflowExecutionWithNewAsPassive mocks base method.
365
>
func (m *MockWorkflowContext) UpdateWorkflowExecutionWithNewAsPassive(ctx context.Context, shardContext ShardContext, newContext WorkflowContext, newMutableState MutableState) error {
workflow_context_mock.go
366
>
m.ctrl.T.Helper()
367
>
ret := m.ctrl.Call(m, "UpdateWorkflowExecutionWithNewAsPassive", ctx, shardContext, newContext, newMutableState)
368
>
ret0, _ := ret[0].(error)
369
>
return ret0
370
>
}
371
372
// UpdateWorkflowExecutionWithNewAsPassive indicates an expected call of UpdateWorkflowExecutionWithNewAsPassive.
373
>
func (mr *MockWorkflowContextMockRecorder) UpdateWorkflowExecutionWithNewAsPassive(ctx, shardContext, newContext, newMutableState any) *gomock.Call {
workflow_context_mock.go
374
>
mr.mock.ctrl.T.Helper()
375
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "UpdateWorkflowExecutionWithNewAsPassive", reflect.TypeOf((*MockWorkflowContext)(nil).UpdateWorkflowExecutionWithNewAsPassive), ctx, shardContext, newContext, newMutableState)
376
>
}