|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |
java.lang.Objectorg.fest.assertions.internal.Throwables
public class Throwables
Reusable assertions for
s.
Throwable
Method Summary | |
---|---|
void |
assertHasMessage(AssertionInfo info,
Throwable actual,
String message)
Asserts that the given actual Throwable message is equal to the given one. |
void |
assertHasMessageContaining(AssertionInfo info,
Throwable actual,
String description)
Asserts that the message of the actual Throwable contains with the given description. |
void |
assertHasMessageEndingWith(AssertionInfo info,
Throwable actual,
String description)
Asserts that the message of the actual Throwable ends with the given description. |
void |
assertHasMessageStartingWith(AssertionInfo info,
Throwable actual,
String description)
Asserts that the message of the actual Throwable starts with the given description. |
void |
assertHasNoCause(AssertionInfo info,
Throwable actual)
Asserts that the actual Throwable does not have a cause. |
void |
assertIsExactlyInstanceOf(AssertionInfo info,
Throwable actual,
Class<? extends Throwable> type)
Asserts that the actual Throwable type is an the same as the given type. |
static Throwables |
instance()
Returns the singleton instance of this class. |
Methods inherited from class java.lang.Object |
---|
clone, equals, finalize, getClass, hashCode, notify, notifyAll, toString, wait, wait, wait |
Method Detail |
---|
public static Throwables instance()
public void assertIsExactlyInstanceOf(AssertionInfo info, Throwable actual, Class<? extends Throwable> type)
Throwable
type is an the same as the given type.
info
- contains information about the assertion.actual
- the given Throwable
.type
- the type to check the actual Throwable
against.
AssertionError
- if the actual Throwable
is null
.
AssertionError
- if the actual Throwable
is not an instance of the given type.
NullPointerException
- if the given type is null
.public void assertHasMessage(AssertionInfo info, Throwable actual, String message)
Throwable
message is equal to the given one.
info
- contains information about the assertion.actual
- the given Throwable
.message
- the expected message.
AssertionError
- if the actual Throwable
is null
.
AssertionError
- if the message of the actual Throwable
is not equal to the given one.public void assertHasNoCause(AssertionInfo info, Throwable actual)
Throwable
does not have a cause.
info
- contains information about the assertion.actual
- the given Throwable
.
AssertionError
- if the actual Throwable
is null
.
AssertionError
- if the actual Throwable
has a cause.public void assertHasMessageStartingWith(AssertionInfo info, Throwable actual, String description)
Throwable
starts with the given description.
info
- contains information about the assertion.actual
- the given Throwable
.description
- the description expected to start the actual Throwable
's message.
AssertionError
- if the actual Throwable
is null
.
AssertionError
- if the message of the actual Throwable
does not start with the given description.public void assertHasMessageContaining(AssertionInfo info, Throwable actual, String description)
Throwable
contains with the given description.
info
- contains information about the assertion.actual
- the given Throwable
.description
- the description expected to be contained in the actual Throwable
's message.
AssertionError
- if the actual Throwable
is null
.
AssertionError
- if the message of the actual Throwable
does not contain the given description.public void assertHasMessageEndingWith(AssertionInfo info, Throwable actual, String description)
Throwable
ends with the given description.
info
- contains information about the assertion.actual
- the given Throwable
.description
- the description expected to end the actual Throwable
's message.
AssertionError
- if the actual Throwable
is null
.
AssertionError
- if the message of the actual Throwable
does not end with the given description.
|
||||||||||
PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD |