-
Notifications
You must be signed in to change notification settings - Fork 179
/
account_creator.go
52 lines (40 loc) · 1.23 KB
/
account_creator.go
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
// Code generated by mockery v2.13.1. DO NOT EDIT.
package mock
import (
common "github.com/onflow/cadence/runtime/common"
mock "github.com/stretchr/testify/mock"
)
// AccountCreator is an autogenerated mock type for the AccountCreator type
type AccountCreator struct {
mock.Mock
}
// CreateAccount provides a mock function with given fields: payer
func (_m *AccountCreator) CreateAccount(payer common.Address) (common.Address, error) {
ret := _m.Called(payer)
var r0 common.Address
if rf, ok := ret.Get(0).(func(common.Address) common.Address); ok {
r0 = rf(payer)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(common.Address)
}
}
var r1 error
if rf, ok := ret.Get(1).(func(common.Address) error); ok {
r1 = rf(payer)
} else {
r1 = ret.Error(1)
}
return r0, r1
}
type mockConstructorTestingTNewAccountCreator interface {
mock.TestingT
Cleanup(func())
}
// 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.
func NewAccountCreator(t mockConstructorTestingTNewAccountCreator) *AccountCreator {
mock := &AccountCreator{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}