Uses of Interface
org.assertj.core.presentation.Representation
-
Packages that use Representation Package Description org.assertj.core.api org.assertj.core.error org.assertj.core.presentation org.assertj.core.util -
-
Uses of Representation in org.assertj.core.api
Methods in org.assertj.core.api that return Representation Modifier and Type Method Description Representation
AssertionInfo. representation()
Representation
WritableAssertionInfo. representation()
Methods in org.assertj.core.api with parameters of type Representation Modifier and Type Method Description static void
AbstractAssert. setCustomRepresentation(Representation customRepresentation)
static void
Assertions. useRepresentation(Representation customRepresentation)
Register aRepresentation
that will be used in all following assertions.void
WritableAssertionInfo. useRepresentation(Representation newRepresentation)
SELF
AbstractAssert. withRepresentation(Representation representation)
Use the givenRepresentation
to describe/represent values in AssertJ error messages.SELF
Assert. withRepresentation(Representation representation)
Use the givenRepresentation
to describe/represent values in AssertJ error messages.Constructors in org.assertj.core.api with parameters of type Representation Constructor Description WritableAssertionInfo(Representation customRepresentation)
-
Uses of Representation in org.assertj.core.error
Methods in org.assertj.core.error with parameters of type Representation Modifier and Type Method Description String
AbstractShouldHaveTextContent. create(Description d, Representation representation)
String
BasicErrorMessageFactory. create(Description d, Representation representation)
Creates a new error message as a result of a failed assertion.String
ErrorMessageFactory. create(Description d, Representation p)
Creates a new error message as a result of a failed assertion.String
MessageFormatter. format(Description d, Representation p, String format, Object... args)
Interprets a printf-style formatString
for failed assertion messages.AssertionError
AssertionErrorFactory. newAssertionError(Description d, Representation representation)
Creates an
.AssertionError
AssertionError
ShouldBeEqual. newAssertionError(Description description, Representation representation)
Creates an
indicating that an assertion that verifies that two objects are equal failed.AssertionError
The
message is built so that it differentiatesAssertionError
ShouldBeEqual.actual
andShouldBeEqual.expected
description in case their string representation are the same (like 42 float and 42 double).static AssertionErrorFactory
ShouldBeEqual. shouldBeEqual(Object actual, Object expected, ComparisonStrategy comparisonStrategy, Representation representation)
Creates a new
.ShouldBeEqual
static AssertionErrorFactory
ShouldBeEqual. shouldBeEqual(Object actual, Object expected, Representation representation)
Creates a new
.ShouldBeEqual
static ErrorMessageFactory
ShouldBeEqualByComparingFieldByFieldRecursively. shouldBeEqualByComparingFieldByFieldRecursive(Object actual, Object other, List<DeepDifference.Difference> differences, Representation representation)
-
Uses of Representation in org.assertj.core.presentation
Classes in org.assertj.core.presentation that implement Representation Modifier and Type Class 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.Methods in org.assertj.core.presentation with parameters of type Representation Modifier and Type Method Description protected String
StandardRepresentation. multiLineFormat(Representation representation, Object[] iterable, Set<Object[]> alreadyFormatted)
protected String
StandardRepresentation. singleLineFormat(Representation representation, Object[] iterable, String start, String end, Set<Object[]> alreadyFormatted)
protected String
StandardRepresentation. smartFormat(Representation representation, Object[] iterable)
protected String
BinaryRepresentation. toStringOf(Representation representation, String s)
protected String
HexadecimalRepresentation. toStringOf(Representation representation, String s)
-
Uses of Representation in org.assertj.core.util
Methods in org.assertj.core.util with parameters of type Representation Modifier and Type Method Description static String
Maps. format(Representation p, Map<?,?> map)
Deprecated.useStandardRepresentation.toStringOf(Map)
instead.
-