Documentation ¶
Overview ¶
Package mock_log is a generated GoMock package.
Index ¶
- type MockBuilder
- type MockBuilderMockRecorder
- type MockFields
- func (m *MockFields) Custom(ctx context.Context, level log.Level, skipAdditionalFrames int, format string, ...)
- func (m *MockFields) Debug(ctx context.Context, format string, args ...interface{})
- func (m *MockFields) EXPECT() *MockFieldsMockRecorder
- func (m *MockFields) Error(ctx context.Context, format string, args ...interface{})
- func (m *MockFields) Info(ctx context.Context, format string, args ...interface{})
- func (m *MockFields) Trace(ctx context.Context, format string, args ...interface{})
- func (m *MockFields) Warn(ctx context.Context, format string, args ...interface{})
- func (m *MockFields) WithError(err error) log.Fields
- func (m *MockFields) WithField(name string, value interface{}) log.Fields
- type MockFieldsMockRecorder
- func (mr *MockFieldsMockRecorder) Custom(ctx, level, skipAdditionalFrames, format interface{}, args ...interface{}) *gomock.Call
- func (mr *MockFieldsMockRecorder) Debug(ctx, format interface{}, args ...interface{}) *gomock.Call
- func (mr *MockFieldsMockRecorder) Error(ctx, format interface{}, args ...interface{}) *gomock.Call
- func (mr *MockFieldsMockRecorder) Info(ctx, format interface{}, args ...interface{}) *gomock.Call
- func (mr *MockFieldsMockRecorder) Trace(ctx, format interface{}, args ...interface{}) *gomock.Call
- func (mr *MockFieldsMockRecorder) Warn(ctx, format interface{}, args ...interface{}) *gomock.Call
- func (mr *MockFieldsMockRecorder) WithError(err interface{}) *gomock.Call
- func (mr *MockFieldsMockRecorder) WithField(name, value interface{}) *gomock.Call
- type MockLogger
- func (m *MockLogger) Configuration() log.LoggerConfiguration
- func (m *MockLogger) Custom(ctx context.Context, level log.Level, skipAdditionalFrames int, format string, ...)
- func (m *MockLogger) Debug(ctx context.Context, format string, args ...interface{})
- func (m *MockLogger) EXPECT() *MockLoggerMockRecorder
- func (m *MockLogger) Error(ctx context.Context, format string, args ...interface{})
- func (m *MockLogger) Info(ctx context.Context, format string, args ...interface{})
- func (m *MockLogger) Trace(ctx context.Context, format string, args ...interface{})
- func (m *MockLogger) Warn(ctx context.Context, format string, args ...interface{})
- func (m *MockLogger) WithError(err error) log.Fields
- func (m *MockLogger) WithField(name string, value interface{}) log.Fields
- type MockLoggerConfiguration
- type MockLoggerConfigurationMockRecorder
- type MockLoggerMockRecorder
- func (mr *MockLoggerMockRecorder) Configuration() *gomock.Call
- func (mr *MockLoggerMockRecorder) Custom(ctx, level, skipAdditionalFrames, format interface{}, args ...interface{}) *gomock.Call
- func (mr *MockLoggerMockRecorder) Debug(ctx, format interface{}, args ...interface{}) *gomock.Call
- func (mr *MockLoggerMockRecorder) Error(ctx, format interface{}, args ...interface{}) *gomock.Call
- func (mr *MockLoggerMockRecorder) Info(ctx, format interface{}, args ...interface{}) *gomock.Call
- func (mr *MockLoggerMockRecorder) Trace(ctx, format interface{}, args ...interface{}) *gomock.Call
- func (mr *MockLoggerMockRecorder) Warn(ctx, format interface{}, args ...interface{}) *gomock.Call
- func (mr *MockLoggerMockRecorder) WithError(err interface{}) *gomock.Call
- func (mr *MockLoggerMockRecorder) WithField(name, value interface{}) *gomock.Call
- type MockMessages
- func (m *MockMessages) Custom(ctx context.Context, level log.Level, skipAdditionalFrames int, format string, ...)
- func (m *MockMessages) Debug(ctx context.Context, format string, args ...interface{})
- func (m *MockMessages) EXPECT() *MockMessagesMockRecorder
- func (m *MockMessages) Error(ctx context.Context, format string, args ...interface{})
- func (m *MockMessages) Info(ctx context.Context, format string, args ...interface{})
- func (m *MockMessages) Trace(ctx context.Context, format string, args ...interface{})
- func (m *MockMessages) Warn(ctx context.Context, format string, args ...interface{})
- type MockMessagesMockRecorder
- func (mr *MockMessagesMockRecorder) Custom(ctx, level, skipAdditionalFrames, format interface{}, args ...interface{}) *gomock.Call
- func (mr *MockMessagesMockRecorder) Debug(ctx, format interface{}, args ...interface{}) *gomock.Call
- func (mr *MockMessagesMockRecorder) Error(ctx, format interface{}, args ...interface{}) *gomock.Call
- func (mr *MockMessagesMockRecorder) Info(ctx, format interface{}, args ...interface{}) *gomock.Call
- func (mr *MockMessagesMockRecorder) Trace(ctx, format interface{}, args ...interface{}) *gomock.Call
- func (mr *MockMessagesMockRecorder) Warn(ctx, format interface{}, args ...interface{}) *gomock.Call
Constants ¶
This section is empty.
Variables ¶
This section is empty.
Functions ¶
This section is empty.
Types ¶
type MockBuilder ¶
type MockBuilder struct {
// contains filtered or unexported fields
}
MockBuilder is a mock of Builder interface
func NewMockBuilder ¶
func NewMockBuilder(ctrl *gomock.Controller) *MockBuilder
NewMockBuilder creates a new mock instance
func (*MockBuilder) EXPECT ¶
func (m *MockBuilder) EXPECT() *MockBuilderMockRecorder
EXPECT returns an object that allows the caller to indicate expected use
func (*MockBuilder) IncrementSkipFrames ¶
func (m *MockBuilder) IncrementSkipFrames(addition int) log.Builder
IncrementSkipFrames mocks base method
type MockBuilderMockRecorder ¶
type MockBuilderMockRecorder struct {
// contains filtered or unexported fields
}
MockBuilderMockRecorder is the mock recorder for MockBuilder
func (*MockBuilderMockRecorder) Build ¶
func (mr *MockBuilderMockRecorder) Build() *gomock.Call
Build indicates an expected call of Build
func (*MockBuilderMockRecorder) IncrementSkipFrames ¶
func (mr *MockBuilderMockRecorder) IncrementSkipFrames(addition interface{}) *gomock.Call
IncrementSkipFrames indicates an expected call of IncrementSkipFrames
func (*MockBuilderMockRecorder) SetLevel ¶
func (mr *MockBuilderMockRecorder) SetLevel(level interface{}) *gomock.Call
SetLevel indicates an expected call of SetLevel
type MockFields ¶
type MockFields struct {
// contains filtered or unexported fields
}
MockFields is a mock of Fields interface
func NewMockFields ¶
func NewMockFields(ctrl *gomock.Controller) *MockFields
NewMockFields creates a new mock instance
func (*MockFields) Custom ¶
func (m *MockFields) Custom(ctx context.Context, level log.Level, skipAdditionalFrames int, format string, args ...interface{})
Custom mocks base method
func (*MockFields) Debug ¶
func (m *MockFields) Debug(ctx context.Context, format string, args ...interface{})
Debug mocks base method
func (*MockFields) EXPECT ¶
func (m *MockFields) EXPECT() *MockFieldsMockRecorder
EXPECT returns an object that allows the caller to indicate expected use
func (*MockFields) Error ¶
func (m *MockFields) Error(ctx context.Context, format string, args ...interface{})
Error mocks base method
func (*MockFields) Info ¶
func (m *MockFields) Info(ctx context.Context, format string, args ...interface{})
Info mocks base method
func (*MockFields) Trace ¶
func (m *MockFields) Trace(ctx context.Context, format string, args ...interface{})
Trace mocks base method
func (*MockFields) Warn ¶
func (m *MockFields) Warn(ctx context.Context, format string, args ...interface{})
Warn mocks base method
type MockFieldsMockRecorder ¶
type MockFieldsMockRecorder struct {
// contains filtered or unexported fields
}
MockFieldsMockRecorder is the mock recorder for MockFields
func (*MockFieldsMockRecorder) Custom ¶
func (mr *MockFieldsMockRecorder) Custom(ctx, level, skipAdditionalFrames, format interface{}, args ...interface{}) *gomock.Call
Custom indicates an expected call of Custom
func (*MockFieldsMockRecorder) Debug ¶
func (mr *MockFieldsMockRecorder) Debug(ctx, format interface{}, args ...interface{}) *gomock.Call
Debug indicates an expected call of Debug
func (*MockFieldsMockRecorder) Error ¶
func (mr *MockFieldsMockRecorder) Error(ctx, format interface{}, args ...interface{}) *gomock.Call
Error indicates an expected call of Error
func (*MockFieldsMockRecorder) Info ¶
func (mr *MockFieldsMockRecorder) Info(ctx, format interface{}, args ...interface{}) *gomock.Call
Info indicates an expected call of Info
func (*MockFieldsMockRecorder) Trace ¶
func (mr *MockFieldsMockRecorder) Trace(ctx, format interface{}, args ...interface{}) *gomock.Call
Trace indicates an expected call of Trace
func (*MockFieldsMockRecorder) Warn ¶
func (mr *MockFieldsMockRecorder) Warn(ctx, format interface{}, args ...interface{}) *gomock.Call
Warn indicates an expected call of Warn
func (*MockFieldsMockRecorder) WithError ¶
func (mr *MockFieldsMockRecorder) WithError(err interface{}) *gomock.Call
WithError indicates an expected call of WithError
func (*MockFieldsMockRecorder) WithField ¶
func (mr *MockFieldsMockRecorder) WithField(name, value interface{}) *gomock.Call
WithField indicates an expected call of WithField
type MockLogger ¶
type MockLogger struct {
// contains filtered or unexported fields
}
MockLogger is a mock of Logger interface
func NewMockLogger ¶
func NewMockLogger(ctrl *gomock.Controller) *MockLogger
NewMockLogger creates a new mock instance
func (*MockLogger) Configuration ¶
func (m *MockLogger) Configuration() log.LoggerConfiguration
Configuration mocks base method
func (*MockLogger) Custom ¶
func (m *MockLogger) Custom(ctx context.Context, level log.Level, skipAdditionalFrames int, format string, args ...interface{})
Custom mocks base method
func (*MockLogger) Debug ¶
func (m *MockLogger) Debug(ctx context.Context, format string, args ...interface{})
Debug mocks base method
func (*MockLogger) EXPECT ¶
func (m *MockLogger) EXPECT() *MockLoggerMockRecorder
EXPECT returns an object that allows the caller to indicate expected use
func (*MockLogger) Error ¶
func (m *MockLogger) Error(ctx context.Context, format string, args ...interface{})
Error mocks base method
func (*MockLogger) Info ¶
func (m *MockLogger) Info(ctx context.Context, format string, args ...interface{})
Info mocks base method
func (*MockLogger) Trace ¶
func (m *MockLogger) Trace(ctx context.Context, format string, args ...interface{})
Trace mocks base method
func (*MockLogger) Warn ¶
func (m *MockLogger) Warn(ctx context.Context, format string, args ...interface{})
Warn mocks base method
type MockLoggerConfiguration ¶
type MockLoggerConfiguration struct {
// contains filtered or unexported fields
}
MockLoggerConfiguration is a mock of LoggerConfiguration interface
func NewMockLoggerConfiguration ¶
func NewMockLoggerConfiguration(ctrl *gomock.Controller) *MockLoggerConfiguration
NewMockLoggerConfiguration creates a new mock instance
func (*MockLoggerConfiguration) EXPECT ¶
func (m *MockLoggerConfiguration) EXPECT() *MockLoggerConfigurationMockRecorder
EXPECT returns an object that allows the caller to indicate expected use
func (*MockLoggerConfiguration) Implementation ¶
func (m *MockLoggerConfiguration) Implementation() interface{}
Implementation mocks base method
func (*MockLoggerConfiguration) Level ¶
func (m *MockLoggerConfiguration) Level() log.Level
Level mocks base method
type MockLoggerConfigurationMockRecorder ¶
type MockLoggerConfigurationMockRecorder struct {
// contains filtered or unexported fields
}
MockLoggerConfigurationMockRecorder is the mock recorder for MockLoggerConfiguration
func (*MockLoggerConfigurationMockRecorder) Implementation ¶
func (mr *MockLoggerConfigurationMockRecorder) Implementation() *gomock.Call
Implementation indicates an expected call of Implementation
func (*MockLoggerConfigurationMockRecorder) Level ¶
func (mr *MockLoggerConfigurationMockRecorder) Level() *gomock.Call
Level indicates an expected call of Level
type MockLoggerMockRecorder ¶
type MockLoggerMockRecorder struct {
// contains filtered or unexported fields
}
MockLoggerMockRecorder is the mock recorder for MockLogger
func (*MockLoggerMockRecorder) Configuration ¶
func (mr *MockLoggerMockRecorder) Configuration() *gomock.Call
Configuration indicates an expected call of Configuration
func (*MockLoggerMockRecorder) Custom ¶
func (mr *MockLoggerMockRecorder) Custom(ctx, level, skipAdditionalFrames, format interface{}, args ...interface{}) *gomock.Call
Custom indicates an expected call of Custom
func (*MockLoggerMockRecorder) Debug ¶
func (mr *MockLoggerMockRecorder) Debug(ctx, format interface{}, args ...interface{}) *gomock.Call
Debug indicates an expected call of Debug
func (*MockLoggerMockRecorder) Error ¶
func (mr *MockLoggerMockRecorder) Error(ctx, format interface{}, args ...interface{}) *gomock.Call
Error indicates an expected call of Error
func (*MockLoggerMockRecorder) Info ¶
func (mr *MockLoggerMockRecorder) Info(ctx, format interface{}, args ...interface{}) *gomock.Call
Info indicates an expected call of Info
func (*MockLoggerMockRecorder) Trace ¶
func (mr *MockLoggerMockRecorder) Trace(ctx, format interface{}, args ...interface{}) *gomock.Call
Trace indicates an expected call of Trace
func (*MockLoggerMockRecorder) Warn ¶
func (mr *MockLoggerMockRecorder) Warn(ctx, format interface{}, args ...interface{}) *gomock.Call
Warn indicates an expected call of Warn
func (*MockLoggerMockRecorder) WithError ¶
func (mr *MockLoggerMockRecorder) WithError(err interface{}) *gomock.Call
WithError indicates an expected call of WithError
func (*MockLoggerMockRecorder) WithField ¶
func (mr *MockLoggerMockRecorder) WithField(name, value interface{}) *gomock.Call
WithField indicates an expected call of WithField
type MockMessages ¶
type MockMessages struct {
// contains filtered or unexported fields
}
MockMessages is a mock of Messages interface
func NewMockMessages ¶
func NewMockMessages(ctrl *gomock.Controller) *MockMessages
NewMockMessages creates a new mock instance
func (*MockMessages) Custom ¶
func (m *MockMessages) Custom(ctx context.Context, level log.Level, skipAdditionalFrames int, format string, args ...interface{})
Custom mocks base method
func (*MockMessages) Debug ¶
func (m *MockMessages) Debug(ctx context.Context, format string, args ...interface{})
Debug mocks base method
func (*MockMessages) EXPECT ¶
func (m *MockMessages) EXPECT() *MockMessagesMockRecorder
EXPECT returns an object that allows the caller to indicate expected use
func (*MockMessages) Error ¶
func (m *MockMessages) Error(ctx context.Context, format string, args ...interface{})
Error mocks base method
func (*MockMessages) Info ¶
func (m *MockMessages) Info(ctx context.Context, format string, args ...interface{})
Info mocks base method
type MockMessagesMockRecorder ¶
type MockMessagesMockRecorder struct {
// contains filtered or unexported fields
}
MockMessagesMockRecorder is the mock recorder for MockMessages
func (*MockMessagesMockRecorder) Custom ¶
func (mr *MockMessagesMockRecorder) Custom(ctx, level, skipAdditionalFrames, format interface{}, args ...interface{}) *gomock.Call
Custom indicates an expected call of Custom
func (*MockMessagesMockRecorder) Debug ¶
func (mr *MockMessagesMockRecorder) Debug(ctx, format interface{}, args ...interface{}) *gomock.Call
Debug indicates an expected call of Debug
func (*MockMessagesMockRecorder) Error ¶
func (mr *MockMessagesMockRecorder) Error(ctx, format interface{}, args ...interface{}) *gomock.Call
Error indicates an expected call of Error
func (*MockMessagesMockRecorder) Info ¶
func (mr *MockMessagesMockRecorder) Info(ctx, format interface{}, args ...interface{}) *gomock.Call
Info indicates an expected call of Info
func (*MockMessagesMockRecorder) Trace ¶
func (mr *MockMessagesMockRecorder) Trace(ctx, format interface{}, args ...interface{}) *gomock.Call
Trace indicates an expected call of Trace
func (*MockMessagesMockRecorder) Warn ¶
func (mr *MockMessagesMockRecorder) Warn(ctx, format interface{}, args ...interface{}) *gomock.Call
Warn indicates an expected call of Warn