-
Notifications
You must be signed in to change notification settings - Fork 211
/
sync.go
117 lines (98 loc) · 3.71 KB
/
sync.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
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
// Code generated by MockGen. DO NOT EDIT.
// Source: ./sync.go
//
// Generated by this command:
//
// mockgen -typed -package=mocks -destination=./mocks/sync.go -source=./sync.go
//
// Package mocks is a generated GoMock package.
package mocks
import (
context "context"
reflect "reflect"
types "github.com/spacemeshos/go-spacemesh/common/types"
gomock "go.uber.org/mock/gomock"
)
// MockSyncStateProvider is a mock of SyncStateProvider interface.
type MockSyncStateProvider struct {
ctrl *gomock.Controller
recorder *MockSyncStateProviderMockRecorder
}
// MockSyncStateProviderMockRecorder is the mock recorder for MockSyncStateProvider.
type MockSyncStateProviderMockRecorder struct {
mock *MockSyncStateProvider
}
// NewMockSyncStateProvider creates a new mock instance.
func NewMockSyncStateProvider(ctrl *gomock.Controller) *MockSyncStateProvider {
mock := &MockSyncStateProvider{ctrl: ctrl}
mock.recorder = &MockSyncStateProviderMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockSyncStateProvider) EXPECT() *MockSyncStateProviderMockRecorder {
return m.recorder
}
// IsBeaconSynced mocks base method.
func (m *MockSyncStateProvider) IsBeaconSynced(arg0 types.EpochID) bool {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "IsBeaconSynced", arg0)
ret0, _ := ret[0].(bool)
return ret0
}
// IsBeaconSynced indicates an expected call of IsBeaconSynced.
func (mr *MockSyncStateProviderMockRecorder) IsBeaconSynced(arg0 any) *MockSyncStateProviderIsBeaconSyncedCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "IsBeaconSynced", reflect.TypeOf((*MockSyncStateProvider)(nil).IsBeaconSynced), arg0)
return &MockSyncStateProviderIsBeaconSyncedCall{Call: call}
}
// MockSyncStateProviderIsBeaconSyncedCall wrap *gomock.Call
type MockSyncStateProviderIsBeaconSyncedCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *MockSyncStateProviderIsBeaconSyncedCall) Return(arg0 bool) *MockSyncStateProviderIsBeaconSyncedCall {
c.Call = c.Call.Return(arg0)
return c
}
// Do rewrite *gomock.Call.Do
func (c *MockSyncStateProviderIsBeaconSyncedCall) Do(f func(types.EpochID) bool) *MockSyncStateProviderIsBeaconSyncedCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *MockSyncStateProviderIsBeaconSyncedCall) DoAndReturn(f func(types.EpochID) bool) *MockSyncStateProviderIsBeaconSyncedCall {
c.Call = c.Call.DoAndReturn(f)
return c
}
// IsSynced mocks base method.
func (m *MockSyncStateProvider) IsSynced(arg0 context.Context) bool {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "IsSynced", arg0)
ret0, _ := ret[0].(bool)
return ret0
}
// IsSynced indicates an expected call of IsSynced.
func (mr *MockSyncStateProviderMockRecorder) IsSynced(arg0 any) *MockSyncStateProviderIsSyncedCall {
mr.mock.ctrl.T.Helper()
call := mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "IsSynced", reflect.TypeOf((*MockSyncStateProvider)(nil).IsSynced), arg0)
return &MockSyncStateProviderIsSyncedCall{Call: call}
}
// MockSyncStateProviderIsSyncedCall wrap *gomock.Call
type MockSyncStateProviderIsSyncedCall struct {
*gomock.Call
}
// Return rewrite *gomock.Call.Return
func (c *MockSyncStateProviderIsSyncedCall) Return(arg0 bool) *MockSyncStateProviderIsSyncedCall {
c.Call = c.Call.Return(arg0)
return c
}
// Do rewrite *gomock.Call.Do
func (c *MockSyncStateProviderIsSyncedCall) Do(f func(context.Context) bool) *MockSyncStateProviderIsSyncedCall {
c.Call = c.Call.Do(f)
return c
}
// DoAndReturn rewrite *gomock.Call.DoAndReturn
func (c *MockSyncStateProviderIsSyncedCall) DoAndReturn(f func(context.Context) bool) *MockSyncStateProviderIsSyncedCall {
c.Call = c.Call.DoAndReturn(f)
return c
}