-
Notifications
You must be signed in to change notification settings - Fork 670
/
with_verify_context.go
68 lines (56 loc) · 2.46 KB
/
with_verify_context.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
// Copyright (C) 2019-2023, Ava Labs, Inc. All rights reserved.
// See the file LICENSE for licensing terms.
// Code generated by MockGen. DO NOT EDIT.
// Source: github.com/ava-labs/avalanchego/snow/engine/snowman/block (interfaces: WithVerifyContext)
// Package mocks is a generated GoMock package.
package mocks
import (
context "context"
reflect "reflect"
block "github.com/ava-labs/avalanchego/snow/engine/snowman/block"
gomock "go.uber.org/mock/gomock"
)
// MockWithVerifyContext is a mock of WithVerifyContext interface.
type MockWithVerifyContext struct {
ctrl *gomock.Controller
recorder *MockWithVerifyContextMockRecorder
}
// MockWithVerifyContextMockRecorder is the mock recorder for MockWithVerifyContext.
type MockWithVerifyContextMockRecorder struct {
mock *MockWithVerifyContext
}
// NewMockWithVerifyContext creates a new mock instance.
func NewMockWithVerifyContext(ctrl *gomock.Controller) *MockWithVerifyContext {
mock := &MockWithVerifyContext{ctrl: ctrl}
mock.recorder = &MockWithVerifyContextMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockWithVerifyContext) EXPECT() *MockWithVerifyContextMockRecorder {
return m.recorder
}
// ShouldVerifyWithContext mocks base method.
func (m *MockWithVerifyContext) ShouldVerifyWithContext(arg0 context.Context) (bool, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "ShouldVerifyWithContext", arg0)
ret0, _ := ret[0].(bool)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// ShouldVerifyWithContext indicates an expected call of ShouldVerifyWithContext.
func (mr *MockWithVerifyContextMockRecorder) ShouldVerifyWithContext(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "ShouldVerifyWithContext", reflect.TypeOf((*MockWithVerifyContext)(nil).ShouldVerifyWithContext), arg0)
}
// VerifyWithContext mocks base method.
func (m *MockWithVerifyContext) VerifyWithContext(arg0 context.Context, arg1 *block.Context) error {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "VerifyWithContext", arg0, arg1)
ret0, _ := ret[0].(error)
return ret0
}
// VerifyWithContext indicates an expected call of VerifyWithContext.
func (mr *MockWithVerifyContextMockRecorder) VerifyWithContext(arg0, arg1 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "VerifyWithContext", reflect.TypeOf((*MockWithVerifyContext)(nil).VerifyWithContext), arg0, arg1)
}