// LoadMutableState mocks base method.
func (m *MockWorkflowContext) LoadMutableState(ctx context.Context, shardContext ShardContext) (MutableState, error) {
workflow_context_mock.go
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "LoadMutableState", ctx, shardContext)
ret0, _ := ret[0].(MutableState)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// LoadMutableState indicates an expected call of LoadMutableState.