-
Notifications
You must be signed in to change notification settings - Fork 211
/
updater.go
77 lines (65 loc) · 2.31 KB
/
updater.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
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74
75
76
77
// Code generated by MockGen. DO NOT EDIT.
// Source: github.com/spacemeshos/go-spacemesh/genvm/core (interfaces: AccountUpdater)
//
// Generated by this command:
//
// mockgen -typed -package=mocks -destination=./mocks/updater.go github.com/spacemeshos/go-spacemesh/genvm/core AccountUpdater
//
// Package mocks is a generated GoMock package.
package mocks
import (
reflect "reflect"
types "github.com/spacemeshos/go-spacemesh/common/types"
gomock "go.uber.org/mock/gomock"
)
// MockAccountUpdater is a mock of AccountUpdater interface.
type MockAccountUpdater struct {
ctrl *gomock.Controller
recorder *MockAccountUpdaterMockRecorder
}
// MockAccountUpdaterMockRecorder is the mock recorder for MockAccountUpdater.
type MockAccountUpdaterMockRecorder struct {
mock *MockAccountUpdater
}
// NewMockAccountUpdater creates a new mock instance.
func NewMockAccountUpdater(ctrl *gomock.Controller) *MockAccountUpdater {
mock := &MockAccountUpdater{ctrl: ctrl}
mock.recorder = &MockAccountUpdaterMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockAccountUpdater) EXPECT() *MockAccountUpdaterMockRecorder {
return m.recorder
}
// Update mocks base method.
func (m *MockAccountUpdater) Update(arg0 types.Account) error {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "Update", arg0)
ret0, _ := ret[0].(error)
return ret0
}
// Update indicates an expected call of Update.
func (mr *MockAccountUpdaterMockRecorder) Update(arg0 any) *AccountUpdaterUpdateCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Update", reflect.TypeOf((*MockAccountUpdater)(nil).Update), arg0)
return &AccountUpdaterUpdateCall{Call: call}
}
// AccountUpdaterUpdateCall wrap *gomock.Call
type AccountUpdaterUpdateCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *AccountUpdaterUpdateCall) Return(arg0 error) *AccountUpdaterUpdateCall {
c.Call = c.Call.Return(arg0)
return c
}
// Do rewrite *gomock.Call.Do
func (c *AccountUpdaterUpdateCall) Do(f func(types.Account) error) *AccountUpdaterUpdateCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *AccountUpdaterUpdateCall) DoAndReturn(f func(types.Account) error) *AccountUpdaterUpdateCall {
c.Call = c.Call.DoAndReturn(f)
return c
}