This repository has been archived by the owner on Mar 24, 2022. It is now read-only.
forked from cloudfoundry/bosh-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mocks.go
127 lines (103 loc) · 3.28 KB
/
mocks.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
71
72
73
74
75
76
77
78
79
80
81
82
83
84
85
86
87
88
89
90
91
92
93
94
95
96
97
98
99
100
101
102
103
104
105
106
107
108
109
110
111
112
113
114
115
116
117
118
119
120
121
122
123
124
125
126
127
// Automatically generated by MockGen. DO NOT EDIT!
// Source: github.com/cloudfoundry/bosh-cli/deployment/disk (interfaces: Disk,Manager)
package mocks
import (
disk "github.com/cloudfoundry/bosh-cli/deployment/disk"
manifest "github.com/cloudfoundry/bosh-cli/deployment/manifest"
ui "github.com/cloudfoundry/bosh-cli/ui"
property "github.com/cloudfoundry/bosh-utils/property"
gomock "github.com/golang/mock/gomock"
)
// Mock of Disk interface
type MockDisk struct {
ctrl *gomock.Controller
recorder *_MockDiskRecorder
}
// Recorder for MockDisk (not exported)
type _MockDiskRecorder struct {
mock *MockDisk
}
func NewMockDisk(ctrl *gomock.Controller) *MockDisk {
mock := &MockDisk{ctrl: ctrl}
mock.recorder = &_MockDiskRecorder{mock}
return mock
}
func (_m *MockDisk) EXPECT() *_MockDiskRecorder {
return _m.recorder
}
func (_m *MockDisk) CID() string {
ret := _m.ctrl.Call(_m, "CID")
ret0, _ := ret[0].(string)
return ret0
}
func (_mr *_MockDiskRecorder) CID() *gomock.Call {
return _mr.mock.ctrl.RecordCall(_mr.mock, "CID")
}
func (_m *MockDisk) Delete() error {
ret := _m.ctrl.Call(_m, "Delete")
ret0, _ := ret[0].(error)
return ret0
}
func (_mr *_MockDiskRecorder) Delete() *gomock.Call {
return _mr.mock.ctrl.RecordCall(_mr.mock, "Delete")
}
func (_m *MockDisk) NeedsMigration(_param0 int, _param1 property.Map) bool {
ret := _m.ctrl.Call(_m, "NeedsMigration", _param0, _param1)
ret0, _ := ret[0].(bool)
return ret0
}
func (_mr *_MockDiskRecorder) NeedsMigration(arg0, arg1 interface{}) *gomock.Call {
return _mr.mock.ctrl.RecordCall(_mr.mock, "NeedsMigration", arg0, arg1)
}
// Mock of Manager interface
type MockManager struct {
ctrl *gomock.Controller
recorder *_MockManagerRecorder
}
// Recorder for MockManager (not exported)
type _MockManagerRecorder struct {
mock *MockManager
}
func NewMockManager(ctrl *gomock.Controller) *MockManager {
mock := &MockManager{ctrl: ctrl}
mock.recorder = &_MockManagerRecorder{mock}
return mock
}
func (_m *MockManager) EXPECT() *_MockManagerRecorder {
return _m.recorder
}
func (_m *MockManager) Create(_param0 manifest.DiskPool, _param1 string) (disk.Disk, error) {
ret := _m.ctrl.Call(_m, "Create", _param0, _param1)
ret0, _ := ret[0].(disk.Disk)
ret1, _ := ret[1].(error)
return ret0, ret1
}
func (_mr *_MockManagerRecorder) Create(arg0, arg1 interface{}) *gomock.Call {
return _mr.mock.ctrl.RecordCall(_mr.mock, "Create", arg0, arg1)
}
func (_m *MockManager) DeleteUnused(_param0 ui.Stage) error {
ret := _m.ctrl.Call(_m, "DeleteUnused", _param0)
ret0, _ := ret[0].(error)
return ret0
}
func (_mr *_MockManagerRecorder) DeleteUnused(arg0 interface{}) *gomock.Call {
return _mr.mock.ctrl.RecordCall(_mr.mock, "DeleteUnused", arg0)
}
func (_m *MockManager) FindCurrent() ([]disk.Disk, error) {
ret := _m.ctrl.Call(_m, "FindCurrent")
ret0, _ := ret[0].([]disk.Disk)
ret1, _ := ret[1].(error)
return ret0, ret1
}
func (_mr *_MockManagerRecorder) FindCurrent() *gomock.Call {
return _mr.mock.ctrl.RecordCall(_mr.mock, "FindCurrent")
}
func (_m *MockManager) FindUnused() ([]disk.Disk, error) {
ret := _m.ctrl.Call(_m, "FindUnused")
ret0, _ := ret[0].([]disk.Disk)
ret1, _ := ret[1].(error)
return ret0, ret1
}
func (_mr *_MockManagerRecorder) FindUnused() *gomock.Call {
return _mr.mock.ctrl.RecordCall(_mr.mock, "FindUnused")
}