forked from cloudfoundry/bosh-cli
-
Notifications
You must be signed in to change notification settings - Fork 0
/
mocks.go
40 lines (32 loc) · 1.3 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
// Automatically generated by MockGen. DO NOT EDIT!
// Source: github.com/cloudfoundry/bosh-cli/config (interfaces: LegacyDeploymentStateMigrator)
package mocks
import (
gomock "github.com/golang/mock/gomock"
)
// Mock of LegacyDeploymentStateMigrator interface
type MockLegacyDeploymentStateMigrator struct {
ctrl *gomock.Controller
recorder *_MockLegacyDeploymentStateMigratorRecorder
}
// Recorder for MockLegacyDeploymentStateMigrator (not exported)
type _MockLegacyDeploymentStateMigratorRecorder struct {
mock *MockLegacyDeploymentStateMigrator
}
func NewMockLegacyDeploymentStateMigrator(ctrl *gomock.Controller) *MockLegacyDeploymentStateMigrator {
mock := &MockLegacyDeploymentStateMigrator{ctrl: ctrl}
mock.recorder = &_MockLegacyDeploymentStateMigratorRecorder{mock}
return mock
}
func (_m *MockLegacyDeploymentStateMigrator) EXPECT() *_MockLegacyDeploymentStateMigratorRecorder {
return _m.recorder
}
func (_m *MockLegacyDeploymentStateMigrator) MigrateIfExists(_param0 string) (bool, error) {
ret := _m.ctrl.Call(_m, "MigrateIfExists", _param0)
ret0, _ := ret[0].(bool)
ret1, _ := ret[1].(error)
return ret0, ret1
}
func (_mr *_MockLegacyDeploymentStateMigratorRecorder) MigrateIfExists(arg0 interface{}) *gomock.Call {
return _mr.mock.ctrl.RecordCall(_mr.mock, "MigrateIfExists", arg0)
}