Class AbstractCharacterAssert<SELF extends AbstractCharacterAssert<SELF>>
- Type Parameters:
SELF- the "self" type of this assertion class. Please read "Emulating 'self types' using Java Generics to simplify fluent API implementation" for more details.
- All Implemented Interfaces:
Assert<SELF,,Character> ComparableAssert<SELF,,Character> Descriptable<SELF>,ExtensionPoints<SELF,Character>
- Direct Known Subclasses:
CharacterAssert
Characters.- Author:
- Yvonne Wang, David DIDIER, Ansgar Konermann, Alex Ruiz, Joel Costigliola, Mikhail Mazursky
-
Field Summary
Fields inherited from class org.assertj.core.api.AbstractAssert
actual, info, myself, objects, throwUnsupportedExceptionOnEquals -
Constructor Summary
ConstructorsModifierConstructorDescriptionprotectedAbstractCharacterAssert(Character actual, Class<?> selfType) -
Method Summary
Modifier and TypeMethodDescriptionUse unicode character representation instead of standard representation in error messages.isEqualTo(char expected) Verifies that the actual value is equal to the given one.isGreaterThan(char other) Verifies that the actual value is greater than the given one.isGreaterThanOrEqualTo(char other) Verifies that the actual value is greater than or equal to the given one.isLessThan(char other) Verifies that the actual value is less than the given one.isLessThanOrEqualTo(char other) Verifies that the actual value is less than or equal to the given one.Verifies that the actual value is a lowercase character.isNotEqualTo(char other) Verifies that the actual value is not equal to the given one.Verifies that the actual value is a uppercase character.usingComparator(Comparator<? super Character> customComparator) Use the given custom comparator instead of relying on actual type A equals method for incoming assertion checks.usingComparator(Comparator<? super Character> customComparator, String customComparatorDescription) Use the given custom comparator instead of relying on actual type A equals method for incoming assertion checks.Revert to standard comparison for the incoming assertion checks.Methods inherited from class org.assertj.core.api.AbstractComparableAssert
inBinary, inHexadecimal, isBetween, isEqualByComparingTo, isGreaterThan, isGreaterThanOrEqualTo, isLessThan, isLessThanOrEqualTo, isNotEqualByComparingTo, isStrictlyBetweenMethods inherited from class org.assertj.core.api.AbstractObjectAssert
as, as, doesNotReturn, extracting, extracting, extracting, extracting, extracting, extracting, extractingForProxy, getComparatorsByType, hasAllNullFieldsOrProperties, hasAllNullFieldsOrPropertiesExcept, hasFieldOrProperty, hasFieldOrPropertyWithValue, hasNoNullFieldsOrProperties, hasNoNullFieldsOrPropertiesExcept, hasOnlyFields, isEqualToComparingFieldByField, isEqualToComparingFieldByFieldRecursively, isEqualToComparingOnlyGivenFields, isEqualToIgnoringGivenFields, isEqualToIgnoringNullFields, newObjectAssert, returns, usingComparatorForFields, usingComparatorForType, usingRecursiveAssertion, usingRecursiveAssertion, usingRecursiveComparison, usingRecursiveComparisonMethods inherited from class org.assertj.core.api.AbstractAssert
actual, areEqual, asInstanceOf, asList, assertionError, asString, describedAs, descriptionText, doesNotHave, doesNotHaveSameClassAs, doesNotHaveSameHashCodeAs, doesNotHaveToString, doesNotHaveToString, doesNotMatch, doesNotMatch, equals, extracting, extracting, failure, failureWithActualExpected, failWithActualExpectedAndMessage, failWithMessage, getWritableAssertionInfo, has, hashCode, hasSameClassAs, hasSameHashCodeAs, hasToString, hasToString, is, isElementOfCustomAssert, isEqualTo, isExactlyInstanceOf, isIn, isIn, isInstanceOf, isInstanceOfAny, isInstanceOfSatisfying, isNot, isNotEqualTo, isNotExactlyInstanceOf, isNotIn, isNotIn, isNotInstanceOf, isNotInstanceOfAny, isNotNull, isNotOfAnyClassIn, isNotSameAs, isNull, isOfAnyClassIn, isSameAs, matches, matches, newListAssertInstance, overridingErrorMessage, overridingErrorMessage, satisfies, satisfies, satisfies, satisfiesAnyOf, satisfiesAnyOf, satisfiesAnyOfForProxy, satisfiesForProxy, setCustomRepresentation, setDescriptionConsumer, setPrintAssertionsDescription, throwAssertionError, usingEquals, usingEquals, withFailMessage, withFailMessage, withRepresentation, withThreadDumpOnErrorMethods inherited from class java.lang.Object
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitMethods inherited from interface org.assertj.core.api.Descriptable
as, describedAs, describedAs
-
Constructor Details
-
AbstractCharacterAssert
-
-
Method Details
-
isEqualTo
Verifies that the actual value is equal to the given one.Example:
// assertion will pass assertThat('a').isEqualTo('a'); // assertions will fail assertThat('a').isEqualTo('b'); assertThat('a').isEqualTo('A');- Parameters:
expected- the given value to compare the actual value to.- Returns:
thisassertion object.- Throws:
AssertionError- if the actual value isnull.AssertionError- if the actual value is not equal to the given one.
-
isNotEqualTo
Verifies that the actual value is not equal to the given one.Example:
// assertions will pass assertThat('a').isNotEqualTo('b'); assertThat('a').isNotEqualTo('A'); // assertion will fail assertThat('a').isNotEqualTo('a');- Parameters:
other- the given value to compare the actual value to.- Returns:
thisassertion object.- Throws:
AssertionError- if the actual value isnull.AssertionError- if the actual value is equal to the given one.
-
isLessThan
Verifies that the actual value is less than the given one.Example:
// assertions will pass assertThat('A').isLessThan('a'); assertThat('a').isLessThan('b'); // assertions will fail assertThat('a').isLessThan('A'); assertThat('b').isLessThan('a'); assertThat('a').isLessThan('a');- Parameters:
other- the given value to compare the actual value to.- Returns:
thisassertion object.- Throws:
AssertionError- if the actual value isnull.AssertionError- if the actual value is equal to or greater than the given one.
-
isLessThanOrEqualTo
Verifies that the actual value is less than or equal to the given one.Example:
// assertions will pass assertThat('A').isLessThanOrEqualTo('a'); assertThat('A').isLessThanOrEqualTo('A'); // assertion will fail assertThat('b').isLessThanOrEqualTo('a');- Parameters:
other- the given value to compare the actual value to.- Returns:
thisassertion object.- Throws:
AssertionError- if the actual value isnull.AssertionError- if the actual value is greater than the given one.
-
isGreaterThan
Verifies that the actual value is greater than the given one.Example:
// assertions will pass assertThat('a').isGreaterThan('A'); assertThat('b').isGreaterThan('a'); // assertions will fail assertThat('A').isGreaterThan('a'); assertThat('a').isGreaterThan('b'); assertThat('a').isGreaterThan('a');- Parameters:
other- the given value to compare the actual value to.- Returns:
thisassertion object.- Throws:
AssertionError- if the actual value isnull.AssertionError- if the actual value is equal to or less than the given one.
-
inUnicode
Use unicode character representation instead of standard representation in error messages.It can be useful when comparing UNICODE characters - many unicode chars have duplicate characters assigned, it is thus impossible to find differences from the standard error message:
With standard error message:
With unicode based error message:assertThat('µ').isEqualTo('μ'); org.junit.ComparisonFailure: Expected :'μ' Actual :'µ'assertThat('µ').inUnicode().isEqualTo('μ'); org.junit.ComparisonFailure: Expected :\u03bc Actual :\u00b5- Returns:
thisassertion object.
-
isGreaterThanOrEqualTo
Verifies that the actual value is greater than or equal to the given one.Example:
// assertions will pass assertThat('A').isGreaterThanOrEqualTo('A'); assertThat('b').isGreaterThanOrEqualTo('a'); // assertion will fail assertThat('a').isGreaterThanOrEqualTo('b');- Parameters:
other- the given value to compare the actual value to.- Returns:
thisassertion object.- Throws:
AssertionError- if the actual value isnull.AssertionError- if the actual value is less than the given one.
-
isLowerCase
Verifies that the actual value is a lowercase character.Example:
// assertion will pass assertThat('a').isLowerCase(); // assertions will fail assertThat('A').isLowerCase(); assertThat(' ').isLowerCase(); assertThat('.').isLowerCase(); assertThat('1').isLowerCase();- Returns:
thisassertion object.- Throws:
AssertionError- if the actual value isnull.AssertionError- if the actual value is not a lowercase character.
-
isUpperCase
Verifies that the actual value is a uppercase character.Example:
// assertion will pass assertThat('A').isUpperCase(); // assertions will fail assertThat('a').isUpperCase(); assertThat(' ').isUpperCase(); assertThat('.').isUpperCase(); assertThat('1').isUpperCase();- Returns:
thisassertion object.- Throws:
AssertionError- if the actual value isnull.AssertionError- if the actual value is not a uppercase character.
-
usingComparator
Description copied from class:AbstractAssertUse the given custom comparator instead of relying on actual type A equals method for incoming assertion checks.The custom comparator is bound to assertion instance, meaning that if a new assertion instance is created, the default comparison strategy will be used.
Examples :
// frodo and sam are instances of Character with Hobbit race (obviously :). // raceComparator implements Comparator<Character> assertThat(frodo).usingComparator(raceComparator).isEqualTo(sam);- Specified by:
usingComparatorin interfaceAssert<SELF extends AbstractCharacterAssert<SELF>,Character> - Overrides:
usingComparatorin classAbstractComparableAssert<SELF extends AbstractCharacterAssert<SELF>,Character> - Parameters:
customComparator- the comparator to use for the incoming assertion checks.- Returns:
thisassertion object.
-
usingComparator
public SELF usingComparator(Comparator<? super Character> customComparator, String customComparatorDescription) Description copied from class:AbstractAssertUse the given custom comparator instead of relying on actual type A equals method for incoming assertion checks.The custom comparator is bound to the current assertion chain, meaning that if a new assertion instance is created, the default comparison strategy will be used.
Examples :
// frodo and sam are instances of Character with Hobbit race (obviously :). // raceComparator implements Comparator<Character> assertThat(frodo).usingComparator(raceComparator, "Hobbit Race Comparator").isEqualTo(sam);- Specified by:
usingComparatorin interfaceAssert<SELF extends AbstractCharacterAssert<SELF>,Character> - Overrides:
usingComparatorin classAbstractComparableAssert<SELF extends AbstractCharacterAssert<SELF>,Character> - Parameters:
customComparator- the comparator to use for the incoming assertion checks.customComparatorDescription- comparator description to be used in assertion error messages- Returns:
thisassertion object.
-
usingDefaultComparator
Description copied from class:AbstractAssertRevert to standard comparison for the incoming assertion checks.This method should be used to disable a custom comparison strategy set by calling
usingComparator.- Specified by:
usingDefaultComparatorin interfaceAssert<SELF extends AbstractCharacterAssert<SELF>,Character> - Overrides:
usingDefaultComparatorin classAbstractComparableAssert<SELF extends AbstractCharacterAssert<SELF>,Character> - Returns:
thisassertion object.
-