-
Notifications
You must be signed in to change notification settings - Fork 179
/
component_manager_builder.go
60 lines (47 loc) · 1.64 KB
/
component_manager_builder.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
// Code generated by mockery v2.13.1. DO NOT EDIT.
package component
import (
component "github.com/onflow/flow-go/module/component"
mock "github.com/stretchr/testify/mock"
)
// ComponentManagerBuilder is an autogenerated mock type for the ComponentManagerBuilder type
type ComponentManagerBuilder struct {
mock.Mock
}
// AddWorker provides a mock function with given fields: _a0
func (_m *ComponentManagerBuilder) AddWorker(_a0 component.ComponentWorker) component.ComponentManagerBuilder {
ret := _m.Called(_a0)
var r0 component.ComponentManagerBuilder
if rf, ok := ret.Get(0).(func(component.ComponentWorker) component.ComponentManagerBuilder); ok {
r0 = rf(_a0)
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(component.ComponentManagerBuilder)
}
}
return r0
}
// Build provides a mock function with given fields:
func (_m *ComponentManagerBuilder) Build() *component.ComponentManager {
ret := _m.Called()
var r0 *component.ComponentManager
if rf, ok := ret.Get(0).(func() *component.ComponentManager); ok {
r0 = rf()
} else {
if ret.Get(0) != nil {
r0 = ret.Get(0).(*component.ComponentManager)
}
}
return r0
}
type mockConstructorTestingTNewComponentManagerBuilder interface {
mock.TestingT
Cleanup(func())
}
// NewComponentManagerBuilder creates a new instance of ComponentManagerBuilder. It also registers a testing interface on the mock and a cleanup function to assert the mocks expectations.
func NewComponentManagerBuilder(t mockConstructorTestingTNewComponentManagerBuilder) *ComponentManagerBuilder {
mock := &ComponentManagerBuilder{}
mock.Mock.Test(t)
t.Cleanup(func() { mock.AssertExpectations(t) })
return mock
}