Versions in this module Expand all Collapse all v0 v0.0.1 Oct 3, 2022 Changes in this version + func ClearAllDummySignals() + func SendDummySignal(signal string) + func WaitForDummySignal(signal string) + func WaitUntilLogLevelPattern(value string) + type DummyLogsGatherer struct + func (gatherer *DummyLogsGatherer) ContainsLogLine(loggerName string, level logger.LogLevel, message string) bool + func (gatherer *DummyLogsGatherer) ContainsText(str string) bool + func (gatherer *DummyLogsGatherer) GetText() string + func (gatherer *DummyLogsGatherer) IsInterfaceNil() bool + func (gatherer *DummyLogsGatherer) Output(line logger.LogLineHandler) []byte + func (gatherer *DummyLogsGatherer) Write(_ []byte) (n int, err error) + type FormatterMock struct + func (mock *FormatterMock) IsInterfaceNil() bool + func (mock *FormatterMock) Output(line logger.LogLineHandler) []byte + type FormatterStub struct + OutputCalled func(line logger.LogLineHandler) []byte + func (fs *FormatterStub) IsInterfaceNil() bool + func (fs *FormatterStub) Output(line logger.LogLineHandler) []byte + type LoggerStub struct + DebugCalled func(message string, args ...interface{}) + ErrorCalled func(message string, args ...interface{}) + GetLevelCalled func() logger.LogLevel + InfoCalled func(message string, args ...interface{}) + LogCalled func(logLevel logger.LogLevel, message string, args ...interface{}) + LogIfErrorCalled func(err error, args ...interface{}) + LogLineCalled func(line *logger.LogLine) + SetLevelCalled func(logLevel logger.LogLevel) + TraceCalled func(message string, args ...interface{}) + WarnCalled func(message string, args ...interface{}) + func (stub *LoggerStub) Debug(message string, args ...interface{}) + func (stub *LoggerStub) Error(message string, args ...interface{}) + func (stub *LoggerStub) GetLevel() logger.LogLevel + func (stub *LoggerStub) Info(message string, args ...interface{}) + func (stub *LoggerStub) IsInterfaceNil() bool + func (stub *LoggerStub) Log(logLevel logger.LogLevel, message string, args ...interface{}) + func (stub *LoggerStub) LogIfError(err error, args ...interface{}) + func (stub *LoggerStub) LogLine(line *logger.LogLine) + func (stub *LoggerStub) SetLevel(logLevel logger.LogLevel) + func (stub *LoggerStub) Trace(message string, args ...interface{}) + func (stub *LoggerStub) Warn(message string, args ...interface{}) + type MarshalizerStub struct + MarshalCalled func(obj interface{}) ([]byte, error) + UnmarshalCalled func(obj interface{}, buff []byte) error + func (ms *MarshalizerStub) IsInterfaceNil() bool + func (ms *MarshalizerStub) Marshal(obj interface{}) ([]byte, error) + func (ms *MarshalizerStub) Unmarshal(obj interface{}, buff []byte) error + type WriterStub struct + WriteCalled func(p []byte) (n int, err error) + func (ws *WriterStub) Write(p []byte) (n int, err error)