-
Notifications
You must be signed in to change notification settings - Fork 0
/
client_mock.go
50 lines (41 loc) · 1.81 KB
/
client_mock.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
// Code generated by MockGen. DO NOT EDIT.
// Source: github.com/juju/juju/worker/secretrotate (interfaces: SecretManagerFacade)
// Package mocks is a generated GoMock package.
package mocks
import (
reflect "reflect"
gomock "github.com/golang/mock/gomock"
watcher "github.com/juju/juju/core/watcher"
)
// MockSecretManagerFacade is a mock of SecretManagerFacade interface.
type MockSecretManagerFacade struct {
ctrl *gomock.Controller
recorder *MockSecretManagerFacadeMockRecorder
}
// MockSecretManagerFacadeMockRecorder is the mock recorder for MockSecretManagerFacade.
type MockSecretManagerFacadeMockRecorder struct {
mock *MockSecretManagerFacade
}
// NewMockSecretManagerFacade creates a new mock instance.
func NewMockSecretManagerFacade(ctrl *gomock.Controller) *MockSecretManagerFacade {
mock := &MockSecretManagerFacade{ctrl: ctrl}
mock.recorder = &MockSecretManagerFacadeMockRecorder{mock}
return mock
}
// EXPECT returns an object that allows the caller to indicate expected use.
func (m *MockSecretManagerFacade) EXPECT() *MockSecretManagerFacadeMockRecorder {
return m.recorder
}
// WatchSecretsRotationChanges mocks base method.
func (m *MockSecretManagerFacade) WatchSecretsRotationChanges(arg0 string) (watcher.SecretRotationWatcher, error) {
m.ctrl.T.Helper()
ret := m.ctrl.Call(m, "WatchSecretsRotationChanges", arg0)
ret0, _ := ret[0].(watcher.SecretRotationWatcher)
ret1, _ := ret[1].(error)
return ret0, ret1
}
// WatchSecretsRotationChanges indicates an expected call of WatchSecretsRotationChanges.
func (mr *MockSecretManagerFacadeMockRecorder) WatchSecretsRotationChanges(arg0 interface{}) *gomock.Call {
mr.mock.ctrl.T.Helper()
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "WatchSecretsRotationChanges", reflect.TypeOf((*MockSecretManagerFacade)(nil).WatchSecretsRotationChanges), arg0)
}