Package org.assertj.core.error
Class ShouldBeEqualNormalizingUnicode
java.lang.Object
org.assertj.core.error.BasicErrorMessageFactory
org.assertj.core.error.ShouldBeEqualNormalizingUnicode
- All Implemented Interfaces:
ErrorMessageFactory
Creates an error message indicating that an assertion that verifies that two
CharSequences are equal,
on their canonical form relying on Normalizer, failed.-
Field Summary
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format, formatter -
Constructor Summary
ConstructorsModifierConstructorDescriptionprivateShouldBeEqualNormalizingUnicode(CharSequence actual, CharSequence expected, CharSequence normalizedActual, CharSequence normalizedExpected) -
Method Summary
Modifier and TypeMethodDescriptionstatic ErrorMessageFactoryshouldBeEqualNormalizingUnicode(CharSequence actual, CharSequence expected, CharSequence normalizedActual, CharSequence normalizedExpected) Creates a new.ShouldBeEqualNormalizingUnicodeMethods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
Constructor Details
-
ShouldBeEqualNormalizingUnicode
private ShouldBeEqualNormalizingUnicode(CharSequence actual, CharSequence expected, CharSequence normalizedActual, CharSequence normalizedExpected)
-
-
Method Details
-
shouldBeEqualNormalizingUnicode
public static ErrorMessageFactory shouldBeEqualNormalizingUnicode(CharSequence actual, CharSequence expected, CharSequence normalizedActual, CharSequence normalizedExpected) Creates a new.ShouldBeEqualNormalizingUnicode- Parameters:
actual- the actual value in the failed assertion.expected- the expected value in the failed assertion.normalizedActual- the normalized actual value in the failed assertion.normalizedExpected- the normalized expected value in the failed assertion.- Returns:
- the created
ErrorMessageFactory.
-