2151
2152
// GetChildExecutionInfo mocks base method.
2153
>
func (m *MockMutableState) GetChildExecutionInfo(arg0 int64) (*persistence.ChildExecutionInfo, bool) {
mutable_state_mock.go
2154
>
m.ctrl.T.Helper()
2155
>
ret := m.ctrl.Call(m, "GetChildExecutionInfo", arg0)
2156
>
ret0, _ := ret[0].(*persistence.ChildExecutionInfo)
2157
>
ret1, _ := ret[1].(bool)
2158
>
return ret0, ret1
2159
>
}
2160
2161
// GetChildExecutionInfo indicates an expected call of GetChildExecutionInfo.
2162
>
func (mr *MockMutableStateMockRecorder) GetChildExecutionInfo(arg0 any) *gomock.Call {
mutable_state_mock.go
2163
>
mr.mock.ctrl.T.Helper()
2164
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetChildExecutionInfo", reflect.TypeOf((*MockMutableState)(nil).GetChildExecutionInfo), arg0)
2165
>
}
2166
2167
// GetChildExecutionInitiatedEvent mocks base method.