static ThrowableAssert |
Assertions.assertThat(java.lang.Throwable actual) |
|
ThrowableAssert |
ThrowableAssert.hasMessage(java.lang.String message) |
Verifies that the message of the actual Throwable is equal to the given one.
|
ThrowableAssert |
ThrowableAssert.hasMessageContaining(java.lang.String description) |
Verifies that the message of the actual Throwable contains with the given description.
|
ThrowableAssert |
ThrowableAssert.hasMessageEndingWith(java.lang.String description) |
Verifies that the message of the actual Throwable ends with the given description.
|
ThrowableAssert |
ThrowableAssert.hasMessageStartingWith(java.lang.String description) |
Verifies that the message of the actual Throwable starts with the given description.
|
ThrowableAssert |
ThrowableAssert.hasNoCause() |
Verifies that the actual Throwable does not have a cause.
|