-
Notifications
You must be signed in to change notification settings - Fork 179
/
sealing_observation.go
45 lines (34 loc) · 1.5 KB
/
sealing_observation.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
// Code generated by mockery v2.12.1. DO NOT EDIT.
package mock
import (
flow "github.com/onflow/flow-go/model/flow"
mock "github.com/stretchr/testify/mock"
testing "testing"
)
// SealingObservation is an autogenerated mock type for the SealingObservation type
type SealingObservation struct {
mock.Mock
}
// ApprovalsMissing provides a mock function with given fields: ir, chunksWithMissingApprovals
func (_m *SealingObservation) ApprovalsMissing(ir *flow.IncorporatedResult, chunksWithMissingApprovals map[uint64]flow.IdentifierList) {
_m.Called(ir, chunksWithMissingApprovals)
}
// ApprovalsRequested provides a mock function with given fields: ir, requestCount
func (_m *SealingObservation) ApprovalsRequested(ir *flow.IncorporatedResult, requestCount uint) {
_m.Called(ir, requestCount)
}
// Complete provides a mock function with given fields:
func (_m *SealingObservation) Complete() {
_m.Called()
}
// QualifiesForEmergencySealing provides a mock function with given fields: ir, emergencySealable
func (_m *SealingObservation) QualifiesForEmergencySealing(ir *flow.IncorporatedResult, emergencySealable bool) {
_m.Called(ir, emergencySealable)
}
// NewSealingObservation creates a new instance of SealingObservation. It also registers the testing.TB interface on the mock and a cleanup function to assert the mocks expectations.
func NewSealingObservation(t testing.TB) *SealingObservation {
mock := &SealingObservation{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}