Uses of Class
org.fest.assertions.api.ThrowableAssert
Packages that use ThrowableAssert
-
Uses of ThrowableAssert in org.fest.assertions.api
Methods in org.fest.assertions.api that return ThrowableAssertModifier and TypeMethodDescriptionstatic ThrowableAssert
Assertions.assertThat
(Throwable actual) Creates a new instance of
.ThrowableAssert
ThrowableAssert.hasMessage
(String message) Verifies that the message of the actualThrowable
is equal to the given one.ThrowableAssert.hasMessageContaining
(String description) Verifies that the message of the actualThrowable
contains with the given description.ThrowableAssert.hasMessageEndingWith
(String description) Verifies that the message of the actualThrowable
ends with the given description.ThrowableAssert.hasMessageStartingWith
(String description) Verifies that the message of the actualThrowable
starts with the given description.ThrowableAssert.hasNoCause()
Verifies that the actualThrowable
does not have a cause.