github.com/koko1123/flow-go-1@v0.29.6/fvm/environment/mock/bootstrap_account_creator.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  
    10  // BootstrapAccountCreator is an autogenerated mock type for the BootstrapAccountCreator type
    11  type BootstrapAccountCreator struct {
    12  	mock.Mock
    13  }
    14  
    15  // CreateBootstrapAccount provides a mock function with given fields: publicKeys
    16  func (_m *BootstrapAccountCreator) CreateBootstrapAccount(publicKeys []flow.AccountPublicKey) (flow.Address, error) {
    17  	ret := _m.Called(publicKeys)
    18  
    19  	var r0 flow.Address
    20  	if rf, ok := ret.Get(0).(func([]flow.AccountPublicKey) flow.Address); ok {
    21  		r0 = rf(publicKeys)
    22  	} else {
    23  		if ret.Get(0) != nil {
    24  			r0 = ret.Get(0).(flow.Address)
    25  		}
    26  	}
    27  
    28  	var r1 error
    29  	if rf, ok := ret.Get(1).(func([]flow.AccountPublicKey) error); ok {
    30  		r1 = rf(publicKeys)
    31  	} else {
    32  		r1 = ret.Error(1)
    33  	}
    34  
    35  	return r0, r1
    36  }
    37  
    38  type mockConstructorTestingTNewBootstrapAccountCreator interface {
    39  	mock.TestingT
    40  	Cleanup(func())
    41  }
    42  
    43  // NewBootstrapAccountCreator creates a new instance of BootstrapAccountCreator. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
    44  func NewBootstrapAccountCreator(t mockConstructorTestingTNewBootstrapAccountCreator) *BootstrapAccountCreator {
    45  	mock := &BootstrapAccountCreator{}
    46  	mock.Mock.Test(t)
    47  
    48  	t.Cleanup(func() { mock.AssertExpectations(t) })
    49  
    50  	return mock
    51  }