github.com/koko1123/flow-go-1@v0.29.6/fvm/environment/mock/account_creator.go (about) 1 // Code generated by mockery v2.13.1. DO NOT EDIT. 2 3 package mock 4 5 import ( 6 common "github.com/onflow/cadence/runtime/common" 7 8 mock "github.com/stretchr/testify/mock" 9 ) 10 11 // AccountCreator is an autogenerated mock type for the AccountCreator type 12 type AccountCreator struct { 13 mock.Mock 14 } 15 16 // CreateAccount provides a mock function with given fields: payer 17 func (_m *AccountCreator) CreateAccount(payer common.Address) (common.Address, error) { 18 ret := _m.Called(payer) 19 20 var r0 common.Address 21 if rf, ok := ret.Get(0).(func(common.Address) common.Address); ok { 22 r0 = rf(payer) 23 } else { 24 if ret.Get(0) != nil { 25 r0 = ret.Get(0).(common.Address) 26 } 27 } 28 29 var r1 error 30 if rf, ok := ret.Get(1).(func(common.Address) error); ok { 31 r1 = rf(payer) 32 } else { 33 r1 = ret.Error(1) 34 } 35 36 return r0, r1 37 } 38 39 type mockConstructorTestingTNewAccountCreator interface { 40 mock.TestingT 41 Cleanup(func()) 42 } 43 44 // NewAccountCreator creates a new instance of AccountCreator. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations. 45 func NewAccountCreator(t mockConstructorTestingTNewAccountCreator) *AccountCreator { 46 mock := &AccountCreator{} 47 mock.Mock.Test(t) 48 49 t.Cleanup(func() { mock.AssertExpectations(t) }) 50 51 return mock 52 }