-
Notifications
You must be signed in to change notification settings - Fork 178
/
ping_metrics.go
40 lines (30 loc) · 1.22 KB
/
ping_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
// Code generated by mockery v2.21.4. DO NOT EDIT.
package mock
import (
flow "github.com/onflow/flow-go/model/flow"
mock "github.com/stretchr/testify/mock"
time "time"
)
// PingMetrics is an autogenerated mock type for the PingMetrics type
type PingMetrics struct {
mock.Mock
}
// NodeInfo provides a mock function with given fields: node, nodeInfo, version, sealedHeight, hotstuffCurView
func (_m *PingMetrics) NodeInfo(node *flow.Identity, nodeInfo string, version string, sealedHeight uint64, hotstuffCurView uint64) {
_m.Called(node, nodeInfo, version, sealedHeight, hotstuffCurView)
}
// NodeReachable provides a mock function with given fields: node, nodeInfo, rtt
func (_m *PingMetrics) NodeReachable(node *flow.Identity, nodeInfo string, rtt time.Duration) {
_m.Called(node, nodeInfo, rtt)
}
type mockConstructorTestingTNewPingMetrics interface {
mock.TestingT
Cleanup(func())
}
// NewPingMetrics creates a new instance of PingMetrics. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewPingMetrics(t mockConstructorTestingTNewPingMetrics) *PingMetrics {
mock := &PingMetrics{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}