Package | Description |
---|---|
org.assertj.core.api | |
org.assertj.core.error | |
org.assertj.core.presentation | |
org.assertj.core.util |
Modifier and Type | Field and Description |
---|---|
private static Representation |
AbstractAssert.customRepresentation |
private Representation |
WritableAssertionInfo.representation |
Modifier and Type | Method and Description |
---|---|
Representation |
WritableAssertionInfo.representation() |
Representation |
AssertionInfo.representation() |
Modifier and Type | Method and Description |
---|---|
static void |
AbstractAssert.setCustomRepresentation(Representation customRepresentation) |
void |
WritableAssertionInfo.useRepresentation(Representation newRepresentation) |
static void |
Assertions.useRepresentation(Representation customRepresentation)
Register a
Representation that will be used in all following assertions. |
SELF |
AbstractAssert.withRepresentation(Representation representation)
Use the given
Representation to describe/represent values in AssertJ error messages. |
SELF |
Assert.withRepresentation(Representation representation)
Use the given
Representation to describe/represent values in AssertJ error messages. |
Constructor and Description |
---|
WritableAssertionInfo(Representation customRepresentation) |
Modifier and Type | Field and Description |
---|---|
private Representation |
ShouldBeEqual.representation |
Modifier and Type | Method and Description |
---|---|
private java.lang.String |
MessageFormatter.asText(Representation p,
java.lang.Object o) |
java.lang.String |
BasicErrorMessageFactory.create(Description d,
Representation representation)
Creates a new error message as a result of a failed assertion.
|
java.lang.String |
ErrorMessageFactory.create(Description d,
Representation p)
Creates a new error message as a result of a failed assertion.
|
java.lang.String |
AbstractShouldHaveTextContent.create(Description d,
Representation representation) |
private java.lang.String |
ShouldBeEqual.defaultDetailedErrorMessage(Description description,
Representation representation)
Builds and returns an error message from description using
ShouldBeEqual.detailedExpected() and
ShouldBeEqual.detailedActual() detailed representation. |
private java.lang.String |
ShouldBeEqual.defaultErrorMessage(Description description,
Representation representation)
Builds and returns an error message from description using
ShouldBeEqual.expected and ShouldBeEqual.actual basic
representation. |
private static java.lang.String |
ShouldBeEqualByComparingFieldByFieldRecursively.describeDifference(DeepDifference.Difference difference,
Representation representation) |
java.lang.String |
MessageFormatter.format(Description d,
Representation p,
java.lang.String format,
java.lang.Object... args)
Interprets a printf-style format
String for failed assertion messages. |
private java.lang.Object[] |
MessageFormatter.format(Representation p,
java.lang.Object[] args) |
java.lang.AssertionError |
AssertionErrorFactory.newAssertionError(Description d,
Representation representation)
Creates an
. |
java.lang.AssertionError |
ShouldBeEqual.newAssertionError(Description description,
Representation representation)
Creates an
indicating that an assertion that verifies that two objects are
equal failed.The message is built so that it differentiates ShouldBeEqual.actual and
ShouldBeEqual.expected description in case their string representation are the same (like 42 float and 42 double). |
static AssertionErrorFactory |
ShouldBeEqual.shouldBeEqual(java.lang.Object actual,
java.lang.Object expected,
ComparisonStrategy comparisonStrategy,
Representation representation)
Creates a new
. |
static AssertionErrorFactory |
ShouldBeEqual.shouldBeEqual(java.lang.Object actual,
java.lang.Object expected,
Representation representation)
Creates a new
. |
static ErrorMessageFactory |
ShouldBeEqualByComparingFieldByFieldRecursively.shouldBeEqualByComparingFieldByFieldRecursive(java.lang.Object actual,
java.lang.Object other,
java.util.List<DeepDifference.Difference> differences,
Representation representation) |
Constructor and Description |
---|
ShouldBeEqual(java.lang.Object actual,
java.lang.Object expected,
ComparisonStrategy comparisonStrategy,
Representation representation) |
Modifier and Type | Class and Description |
---|---|
class |
BinaryRepresentation
Binary object representation instead of standard java representation.
|
class |
HexadecimalRepresentation
Hexadecimal object representation instead of standard java representation.
|
class |
StandardRepresentation
Standard java object representation.
|
class |
UnicodeRepresentation
Unicode object representation instead of standard java representation.
|
Modifier and Type | Method and Description |
---|---|
protected java.lang.String |
StandardRepresentation.multiLineFormat(Representation representation,
java.lang.Object[] iterable,
java.util.Set<java.lang.Object[]> alreadyFormatted) |
protected java.lang.String |
StandardRepresentation.singleLineFormat(Representation representation,
java.lang.Object[] iterable,
java.lang.String start,
java.lang.String end,
java.util.Set<java.lang.Object[]> alreadyFormatted) |
protected java.lang.String |
StandardRepresentation.smartFormat(Representation representation,
java.lang.Object[] iterable) |
protected java.lang.String |
BinaryRepresentation.toStringOf(Representation representation,
java.lang.String s) |
protected java.lang.String |
HexadecimalRepresentation.toStringOf(Representation representation,
java.lang.String s) |
Modifier and Type | Method and Description |
---|---|
static java.lang.String |
Maps.format(Representation p,
java.util.Map<?,?> map)
Deprecated.
use
StandardRepresentation.toStringOf(Map) instead. |