50 lines
1.6 KiB
Go
50 lines
1.6 KiB
Go
// Code generated by MockGen. DO NOT EDIT.
|
|
// Source: github.com/influxdata/influxdb/v2/v1/authorization (interfaces: PasswordService)
|
|
|
|
// Package mocks is a generated GoMock package.
|
|
package mocks
|
|
|
|
import (
|
|
context "context"
|
|
gomock "github.com/golang/mock/gomock"
|
|
"github.com/influxdata/influxdb/v2/kit/platform"
|
|
reflect "reflect"
|
|
)
|
|
|
|
// MockPasswordService is a mock of PasswordService interface
|
|
type MockPasswordService struct {
|
|
ctrl *gomock.Controller
|
|
recorder *MockPasswordServiceMockRecorder
|
|
}
|
|
|
|
// MockPasswordServiceMockRecorder is the mock recorder for MockPasswordService
|
|
type MockPasswordServiceMockRecorder struct {
|
|
mock *MockPasswordService
|
|
}
|
|
|
|
// NewMockPasswordService creates a new mock instance
|
|
func NewMockPasswordService(ctrl *gomock.Controller) *MockPasswordService {
|
|
mock := &MockPasswordService{ctrl: ctrl}
|
|
mock.recorder = &MockPasswordServiceMockRecorder{mock}
|
|
return mock
|
|
}
|
|
|
|
// EXPECT returns an object that allows the caller to indicate expected use
|
|
func (m *MockPasswordService) EXPECT() *MockPasswordServiceMockRecorder {
|
|
return m.recorder
|
|
}
|
|
|
|
// SetPassword mocks base method
|
|
func (m *MockPasswordService) SetPassword(arg0 context.Context, arg1 platform.ID, arg2 string) error {
|
|
m.ctrl.T.Helper()
|
|
ret := m.ctrl.Call(m, "SetPassword", arg0, arg1, arg2)
|
|
ret0, _ := ret[0].(error)
|
|
return ret0
|
|
}
|
|
|
|
// SetPassword indicates an expected call of SetPassword
|
|
func (mr *MockPasswordServiceMockRecorder) SetPassword(arg0, arg1, arg2 interface{}) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "SetPassword", reflect.TypeOf((*MockPasswordService)(nil).SetPassword), arg0, arg1, arg2)
|
|
}
|