mirror of
https://github.com/zitadel/zitadel.git
synced 2024-12-13 03:24:26 +00:00
6dcdef0268
* fix: add action v2 execution to features * fix: add action v2 execution to features * fix: add action v2 execution to features * fix: update internal/command/instance_features_model.go Co-authored-by: Tim Möhlmann <tim+github@zitadel.com> * fix: merge back main * fix: merge back main * fix: rename feature and service * fix: rename feature and service * fix: review changes * fix: review changes --------- Co-authored-by: Tim Möhlmann <tim+github@zitadel.com>
55 lines
1.5 KiB
Go
55 lines
1.5 KiB
Go
// Code generated by MockGen. DO NOT EDIT.
|
|
// Source: github.com/zitadel/zitadel/internal/id (interfaces: Generator)
|
|
//
|
|
// Generated by this command:
|
|
//
|
|
// mockgen -package mock -destination ./mock/generator.mock.go github.com/zitadel/zitadel/internal/id Generator
|
|
//
|
|
|
|
// Package mock is a generated GoMock package.
|
|
package mock
|
|
|
|
import (
|
|
reflect "reflect"
|
|
|
|
gomock "go.uber.org/mock/gomock"
|
|
)
|
|
|
|
// MockGenerator is a mock of Generator interface.
|
|
type MockGenerator struct {
|
|
ctrl *gomock.Controller
|
|
recorder *MockGeneratorMockRecorder
|
|
}
|
|
|
|
// MockGeneratorMockRecorder is the mock recorder for MockGenerator.
|
|
type MockGeneratorMockRecorder struct {
|
|
mock *MockGenerator
|
|
}
|
|
|
|
// NewMockGenerator creates a new mock instance.
|
|
func NewMockGenerator(ctrl *gomock.Controller) *MockGenerator {
|
|
mock := &MockGenerator{ctrl: ctrl}
|
|
mock.recorder = &MockGeneratorMockRecorder{mock}
|
|
return mock
|
|
}
|
|
|
|
// EXPECT returns an object that allows the caller to indicate expected use.
|
|
func (m *MockGenerator) EXPECT() *MockGeneratorMockRecorder {
|
|
return m.recorder
|
|
}
|
|
|
|
// Next mocks base method.
|
|
func (m *MockGenerator) Next() (string, error) {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "Next")
|
|
ret0, _ := ret[0].(string)
|
|
ret1, _ := ret[1].(error)
|
|
return ret0, ret1
|
|
}
|
|
|
|
// Next indicates an expected call of Next.
|
|
func (mr *MockGeneratorMockRecorder) Next() *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Next", reflect.TypeOf((*MockGenerator)(nil).Next))
|
|
}
|