-
Notifications
You must be signed in to change notification settings - Fork 211
/
mocks.go
50 lines (41 loc) · 1.49 KB
/
mocks.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
// Code generated by MockGen. DO NOT EDIT.
// Source: ./blocks.go
// Package blockssync is a generated GoMock package.
package blockssync
import (
context "context"
reflect "reflect"
gomock "github.com/golang/mock/gomock"
types "github.com/spacemeshos/go-spacemesh/common/types"
)
// MockblockFetcher is a mock of blockFetcher interface.
type MockblockFetcher struct {
ctrl *gomock.Controller
recorder *MockblockFetcherMockRecorder
}
// MockblockFetcherMockRecorder is the mock recorder for MockblockFetcher.
type MockblockFetcherMockRecorder struct {
mock *MockblockFetcher
}
// NewMockblockFetcher creates a new mock instance.
func NewMockblockFetcher(ctrl *gomock.Controller) *MockblockFetcher {
mock := &MockblockFetcher{ctrl: ctrl}
mock.recorder = &MockblockFetcherMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockblockFetcher) EXPECT() *MockblockFetcherMockRecorder {
return m.recorder
}
// GetBlocks mocks base method.
func (m *MockblockFetcher) GetBlocks(arg0 context.Context, arg1 []types.BlockID) error {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "GetBlocks", arg0, arg1)
ret0, _ := ret[0].(error)
return ret0
}
// GetBlocks indicates an expected call of GetBlocks.
func (mr *MockblockFetcherMockRecorder) GetBlocks(arg0, arg1 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "GetBlocks", reflect.TypeOf((*MockblockFetcher)(nil).GetBlocks), arg0, arg1)
}