github.com/onflow/flow-go@v0.35.7-crescendo-preview.23-atree-inlining/module/mock/dkg_controller_factory.go (about) 1 // Code generated by mockery v2.21.4. DO NOT EDIT. 2 3 package mock 4 5 import ( 6 flow "github.com/onflow/flow-go/model/flow" 7 mock "github.com/stretchr/testify/mock" 8 9 module "github.com/onflow/flow-go/module" 10 ) 11 12 // DKGControllerFactory is an autogenerated mock type for the DKGControllerFactory type 13 type DKGControllerFactory struct { 14 mock.Mock 15 } 16 17 // Create provides a mock function with given fields: dkgInstanceID, participants, seed 18 func (_m *DKGControllerFactory) Create(dkgInstanceID string, participants flow.GenericIdentityList[flow.IdentitySkeleton], seed []byte) (module.DKGController, error) { 19 ret := _m.Called(dkgInstanceID, participants, seed) 20 21 var r0 module.DKGController 22 var r1 error 23 if rf, ok := ret.Get(0).(func(string, flow.GenericIdentityList[flow.IdentitySkeleton], []byte) (module.DKGController, error)); ok { 24 return rf(dkgInstanceID, participants, seed) 25 } 26 if rf, ok := ret.Get(0).(func(string, flow.GenericIdentityList[flow.IdentitySkeleton], []byte) module.DKGController); ok { 27 r0 = rf(dkgInstanceID, participants, seed) 28 } else { 29 if ret.Get(0) != nil { 30 r0 = ret.Get(0).(module.DKGController) 31 } 32 } 33 34 if rf, ok := ret.Get(1).(func(string, flow.GenericIdentityList[flow.IdentitySkeleton], []byte) error); ok { 35 r1 = rf(dkgInstanceID, participants, seed) 36 } else { 37 r1 = ret.Error(1) 38 } 39 40 return r0, r1 41 } 42 43 type mockConstructorTestingTNewDKGControllerFactory interface { 44 mock.TestingT 45 Cleanup(func()) 46 } 47 48 // NewDKGControllerFactory creates a new instance of DKGControllerFactory. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. 49 func NewDKGControllerFactory(t mockConstructorTestingTNewDKGControllerFactory) *DKGControllerFactory { 50 mock := &DKGControllerFactory{} 51 mock.Mock.Test(t) 52 53 t.Cleanup(func() { mock.AssertExpectations(t) }) 54 55 return mock 56 }