mirror of
https://github.com/qdm12/gluetun.git
synced 2026-07-20 09:26:25 +02:00
75 lines
2.2 KiB
Go
75 lines
2.2 KiB
Go
// Code generated by MockGen. DO NOT EDIT.
|
|
// Source: github.com/qdm12/gluetun/internal/server/middlewares/auth (interfaces: DebugLogger)
|
|
//
|
|
// Generated by this command:
|
|
//
|
|
// mockgen -destination=mocks_test.go -package=auth . DebugLogger
|
|
//
|
|
|
|
// Package auth is a generated GoMock package.
|
|
package auth
|
|
|
|
import (
|
|
reflect "reflect"
|
|
|
|
gomock "go.uber.org/mock/gomock"
|
|
)
|
|
|
|
// MockDebugLogger is a mock of DebugLogger interface.
|
|
type MockDebugLogger struct {
|
|
ctrl *gomock.Controller
|
|
recorder *MockDebugLoggerMockRecorder
|
|
isgomock struct{}
|
|
}
|
|
|
|
// MockDebugLoggerMockRecorder is the mock recorder for MockDebugLogger.
|
|
type MockDebugLoggerMockRecorder struct {
|
|
mock *MockDebugLogger
|
|
}
|
|
|
|
// NewMockDebugLogger creates a new mock instance.
|
|
func NewMockDebugLogger(ctrl *gomock.Controller) *MockDebugLogger {
|
|
mock := &MockDebugLogger{ctrl: ctrl}
|
|
mock.recorder = &MockDebugLoggerMockRecorder{mock}
|
|
return mock
|
|
}
|
|
|
|
// EXPECT returns an object that allows the caller to indicate expected use.
|
|
func (m *MockDebugLogger) EXPECT() *MockDebugLoggerMockRecorder {
|
|
return m.recorder
|
|
}
|
|
|
|
// Debugf mocks base method.
|
|
func (m *MockDebugLogger) Debugf(format string, args ...any) {
|
|
m.ctrl.T.Helper()
|
|
varargs := []any{format}
|
|
for _, a := range args {
|
|
varargs = append(varargs, a)
|
|
}
|
|
m.ctrl.Call(m, "Debugf", varargs...)
|
|
}
|
|
|
|
// Debugf indicates an expected call of Debugf.
|
|
func (mr *MockDebugLoggerMockRecorder) Debugf(format any, args ...any) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
varargs := append([]any{format}, args...)
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Debugf", reflect.TypeOf((*MockDebugLogger)(nil).Debugf), varargs...)
|
|
}
|
|
|
|
// Warnf mocks base method.
|
|
func (m *MockDebugLogger) Warnf(format string, args ...any) {
|
|
m.ctrl.T.Helper()
|
|
varargs := []any{format}
|
|
for _, a := range args {
|
|
varargs = append(varargs, a)
|
|
}
|
|
m.ctrl.Call(m, "Warnf", varargs...)
|
|
}
|
|
|
|
// Warnf indicates an expected call of Warnf.
|
|
func (mr *MockDebugLoggerMockRecorder) Warnf(format any, args ...any) *gomock.Call {
|
|
mr.mock.ctrl.T.Helper()
|
|
varargs := append([]any{format}, args...)
|
|
return mr.mock.ctrl.RecordCallWithMethodType(mr.mock, "Warnf", reflect.TypeOf((*MockDebugLogger)(nil).Warnf), varargs...)
|
|
}
|