-
Notifications
You must be signed in to change notification settings - Fork 178
/
execution_data_requester_metrics.go
49 lines (37 loc) · 1.55 KB
/
execution_data_requester_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
// Code generated by mockery v2.13.1. DO NOT EDIT.
package mock
import (
mock "github.com/stretchr/testify/mock"
time "time"
)
// ExecutionDataRequesterMetrics is an autogenerated mock type for the ExecutionDataRequesterMetrics type
type ExecutionDataRequesterMetrics struct {
mock.Mock
}
// ExecutionDataFetchFinished provides a mock function with given fields: duration, success, height
func (_m *ExecutionDataRequesterMetrics) ExecutionDataFetchFinished(duration time.Duration, success bool, height uint64) {
_m.Called(duration, success, height)
}
// ExecutionDataFetchStarted provides a mock function with given fields:
func (_m *ExecutionDataRequesterMetrics) ExecutionDataFetchStarted() {
_m.Called()
}
// FetchRetried provides a mock function with given fields:
func (_m *ExecutionDataRequesterMetrics) FetchRetried() {
_m.Called()
}
// NotificationSent provides a mock function with given fields: height
func (_m *ExecutionDataRequesterMetrics) NotificationSent(height uint64) {
_m.Called(height)
}
type mockConstructorTestingTNewExecutionDataRequesterMetrics interface {
mock.TestingT
Cleanup(func())
}
// NewExecutionDataRequesterMetrics creates a new instance of ExecutionDataRequesterMetrics. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewExecutionDataRequesterMetrics(t mockConstructorTestingTNewExecutionDataRequesterMetrics) *ExecutionDataRequesterMetrics {
mock := &ExecutionDataRequesterMetrics{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}