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) |
default void |
WithAssertions.useRepresentation(Representation customRepresentation)
Register a
Representation that will be used in all following assertions. |
static void |
Assertions.useRepresentation(Representation customRepresentation)
Register a
Representation that will be used in all following assertions. |
SELF |
Assert.withRepresentation(Representation representation)
Use the given
Representation to describe/represent values in AssertJ error messages. |
SELF |
AbstractAssert.withRepresentation(Representation representation)
Use the given
Representation to describe/represent values in AssertJ error messages. |
Constructor and Description |
---|
WritableAssertionInfo(Representation customRepresentation) |
Modifier and Type | Method and Description |
---|---|
private java.lang.String |
RecursiveComparisonConfiguration.describeIgnoredOverriddenEqualsForTypes(Representation representation) |
private void |
RecursiveComparisonConfiguration.describeIgnoredOverriddenEqualsMethods(java.lang.StringBuilder description,
Representation representation) |
private void |
RecursiveComparisonConfiguration.describeOverriddenEqualsMethodsUsage(java.lang.StringBuilder description,
Representation representation) |
java.lang.String |
RecursiveComparisonConfiguration.multiLineDescription(Representation representation) |
java.lang.String |
ComparisonDifference.multiLineDescription(Representation representation) |
Modifier and Type | Field and Description |
---|---|
private Representation |
ConfigurationProvider.representation |
Modifier and Type | Method and Description |
---|---|
Representation |
ConfigurationProvider.representation()
Returns the default
Representation that needs to be used within AssertJ, which is taken first from:
a registered Configuration.representation() if any
a registered Representation
If no custom representation was registered, the StandardRepresentation will be used. |
Representation |
Configuration.representation() |
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 |
ErrorMessageFactory.create(Description d,
Representation p)
Creates a new error message as a result of a failed assertion.
|
java.lang.String |
BasicErrorMessageFactory.create(Description d,
Representation representation)
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 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 |
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). |
java.lang.AssertionError |
AssertionErrorFactory.newAssertionError(Description description,
Representation representation)
Creates an
. |
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) |
static ErrorMessageFactory |
ShouldBeEqualByComparingFieldByFieldRecursively.shouldBeEqualByComparingFieldByFieldRecursively(java.lang.Object actual,
java.lang.Object other,
java.util.List<ComparisonDifference> differences,
RecursiveComparisonConfiguration recursiveComparisonConfiguration,
Representation representation) |
private java.lang.String |
ShouldBeEqual.smartErrorMessage(Description description,
Representation representation)
Builds and returns an error message from the given description using
ShouldBeEqual.expected and ShouldBeEqual.actual basic
representation if their description differ otherwise use
ShouldBeEqual.defaultDetailedErrorMessage(Description, Representation) to represent them differently. |
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 |
HexadecimalRepresentation.toStringOf(Representation representation,
java.lang.String s) |
protected java.lang.String |
BinaryRepresentation.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. |