-
Notifications
You must be signed in to change notification settings - Fork 178
/
consensus_metrics.go
70 lines (54 loc) · 2.15 KB
/
consensus_metrics.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
// Code generated by mockery v2.13.1. DO NOT EDIT.
package mock
import (
flow "github.com/onflow/flow-go/model/flow"
mock "github.com/stretchr/testify/mock"
time "time"
)
// ConsensusMetrics is an autogenerated mock type for the ConsensusMetrics type
type ConsensusMetrics struct {
mock.Mock
}
// CheckSealingDuration provides a mock function with given fields: duration
func (_m *ConsensusMetrics) CheckSealingDuration(duration time.Duration) {
_m.Called(duration)
}
// EmergencySeal provides a mock function with given fields:
func (_m *ConsensusMetrics) EmergencySeal() {
_m.Called()
}
// FinishBlockToSeal provides a mock function with given fields: blockID
func (_m *ConsensusMetrics) FinishBlockToSeal(blockID flow.Identifier) {
_m.Called(blockID)
}
// FinishCollectionToFinalized provides a mock function with given fields: collectionID
func (_m *ConsensusMetrics) FinishCollectionToFinalized(collectionID flow.Identifier) {
_m.Called(collectionID)
}
// OnApprovalProcessingDuration provides a mock function with given fields: duration
func (_m *ConsensusMetrics) OnApprovalProcessingDuration(duration time.Duration) {
_m.Called(duration)
}
// OnReceiptProcessingDuration provides a mock function with given fields: duration
func (_m *ConsensusMetrics) OnReceiptProcessingDuration(duration time.Duration) {
_m.Called(duration)
}
// StartBlockToSeal provides a mock function with given fields: blockID
func (_m *ConsensusMetrics) StartBlockToSeal(blockID flow.Identifier) {
_m.Called(blockID)
}
// StartCollectionToFinalized provides a mock function with given fields: collectionID
func (_m *ConsensusMetrics) StartCollectionToFinalized(collectionID flow.Identifier) {
_m.Called(collectionID)
}
type mockConstructorTestingTNewConsensusMetrics interface {
mock.TestingT
Cleanup(func())
}
// NewConsensusMetrics creates a new instance of ConsensusMetrics. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewConsensusMetrics(t mockConstructorTestingTNewConsensusMetrics) *ConsensusMetrics {
mock := &ConsensusMetrics{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}