github.com/koko1123/flow-go-1@v0.29.6/module/mock/dkg_controller_factory.go (about) 1 // Code generated by mockery v2.13.1. DO NOT EDIT. 2 3 package mock 4 5 import ( 6 flow "github.com/koko1123/flow-go-1/model/flow" 7 mock "github.com/stretchr/testify/mock" 8 9 module "github.com/koko1123/flow-go-1/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.IdentityList, seed []byte) (module.DKGController, error) { 19 ret := _m.Called(dkgInstanceID, participants, seed) 20 21 var r0 module.DKGController 22 if rf, ok := ret.Get(0).(func(string, flow.IdentityList, []byte) module.DKGController); ok { 23 r0 = rf(dkgInstanceID, participants, seed) 24 } else { 25 if ret.Get(0) != nil { 26 r0 = ret.Get(0).(module.DKGController) 27 } 28 } 29 30 var r1 error 31 if rf, ok := ret.Get(1).(func(string, flow.IdentityList, []byte) error); ok { 32 r1 = rf(dkgInstanceID, participants, seed) 33 } else { 34 r1 = ret.Error(1) 35 } 36 37 return r0, r1 38 } 39 40 type mockConstructorTestingTNewDKGControllerFactory interface { 41 mock.TestingT 42 Cleanup(func()) 43 } 44 45 // 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. 46 func NewDKGControllerFactory(t mockConstructorTestingTNewDKGControllerFactory) *DKGControllerFactory { 47 mock := &DKGControllerFactory{} 48 mock.Mock.Test(t) 49 50 t.Cleanup(func() { mock.AssertExpectations(t) }) 51 52 return mock 53 }