TestLoggerAssert |
TestLoggerAssert.anyThread() |
Changes the assertion mode to verify that log messages have been logged regardless of which
thread actually logged the message.
|
static TestLoggerAssert |
Assertions.assertThat(TestLogger testLogger) |
|
TestLoggerAssert |
TestLoggerAssert.hasLogged(LoggingEvent event) |
Verify that a LoggingEvent has been logged by the test logger.
|
TestLoggerAssert |
TestLoggerAssert.hasLogged(Throwable throwable,
Level level,
String message,
Object... arguments) |
Verify that a log message, at a specific level, has been logged by the test logger in the
presence of a Throwable.
|
TestLoggerAssert |
TestLoggerAssert.hasLogged(Level level,
String message,
Object... arguments) |
Verify that a log message, at a specific level, has been logged by the test logger.
|
TestLoggerAssert |
TestLoggerAssert.hasNotLogged(LoggingEvent event) |
Verify that a LoggingEvent has not been logged by the test logger.
|
TestLoggerAssert |
TestLoggerAssert.hasNotLogged(Throwable throwable,
Level level,
String message,
Object... arguments) |
Verify that a log message, at a specific level, has not been logged by the test logger in the
presence of a Throwable.
|
TestLoggerAssert |
TestLoggerAssert.hasNotLogged(Level level,
String message,
Object... arguments) |
Verify that a log message, at a specific level, has not been logged by the test logger.
|