1231
1232
// GetEngine mocks base method.
1233
>
func (m *MockControllableContext) GetEngine(ctx context.Context) (Engine, error) {
shard_context_mock.go
1234
>
m.ctrl.T.Helper()
1235
>
ret := m.ctrl.Call(m, "GetEngine", ctx)
1236
>
ret0, _ := ret[0].(Engine)
1237
>
ret1, _ := ret[1].(error)
1238
>
return ret0, ret1
1239
>
}
1240
1241
// GetEngine indicates an expected call of GetEngine.
1242
>
func (mr *MockControllableContextMockRecorder) GetEngine(ctx any) *gomock.Call {
shard_context_mock.go
1243
>
mr.mock.ctrl.T.Helper()
1244
>
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetEngine", reflect.TypeOf((*MockControllableContext)(nil).GetEngine), ctx)
1245
>
}
1246
1247
// GetEventLogger mocks base method.