forked from cloudfoundry-attic/bosh-init
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mocks.go
42 lines (34 loc) · 1.16 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
// Automatically generated by MockGen. DO NOT EDIT!
// Source: github.com/cloudfoundry/bosh-init/installation/job (interfaces: Installer)
package mocks
import (
gomock "code.google.com/p/gomock/gomock"
job "github.com/cloudfoundry/bosh-init/installation/job"
ui "github.com/cloudfoundry/bosh-init/ui"
)
// Mock of Installer interface
type MockInstaller struct {
ctrl *gomock.Controller
recorder *_MockInstallerRecorder
}
// Recorder for MockInstaller (not exported)
type _MockInstallerRecorder struct {
mock *MockInstaller
}
func NewMockInstaller(ctrl *gomock.Controller) *MockInstaller {
mock := &MockInstaller{ctrl: ctrl}
mock.recorder = &_MockInstallerRecorder{mock}
return mock
}
func (_m *MockInstaller) EXPECT() *_MockInstallerRecorder {
return _m.recorder
}
func (_m *MockInstaller) Install(_param0 job.RenderedJobRef, _param1 ui.Stage) (job.InstalledJob, error) {
ret := _m.ctrl.Call(_m, "Install", _param0, _param1)
ret0, _ := ret[0].(job.InstalledJob)
ret1, _ := ret[1].(error)
return ret0, ret1
}
func (_mr *_MockInstallerRecorder) Install(arg0, arg1 interface{}) *gomock.Call {
return _mr.mock.ctrl.RecordCall(_mr.mock, "Install", arg0, arg1)
}