|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||
java.lang.Objectorg.assertj.core.api.AbstractAssert<S,A>
org.assertj.core.api.AbstractComparableAssert<S,Character>
org.assertj.core.api.AbstractCharacterAssert<S>
S - the "self" type of this assertion class. Please read "Emulating 'self types' using Java Generics to simplify fluent API implementation"
for more details.public abstract class AbstractCharacterAssert<S extends AbstractCharacterAssert<S>>
Base class for all implementations of assertions for Characters.
| Field Summary |
|---|
| Fields inherited from class org.assertj.core.api.AbstractAssert |
|---|
actual, info, myself |
| Constructor Summary | |
|---|---|
protected |
AbstractCharacterAssert(Character actual,
Class<?> selfType)
|
| Method Summary | |
|---|---|
S |
inUnicode()
Use unicode character representation instead of standard representation in error messages. |
S |
isEqualTo(char expected)
Verifies that the actual value is equal to the given one. |
S |
isGreaterThan(char other)
Verifies that the actual value is greater than the given one. |
S |
isGreaterThanOrEqualTo(char other)
Verifies that the actual value is greater than or equal to the given one. |
S |
isLessThan(char other)
Verifies that the actual value is less than the given one. |
S |
isLessThanOrEqualTo(char other)
Verifies that the actual value is less than or equal to the given one. |
S |
isLowerCase()
Verifies that the actual value is a lowercase character. |
S |
isNotEqualTo(char other)
Verifies that the actual value is not equal to the given one. |
S |
isUpperCase()
Verifies that the actual value is a uppercase character. |
S |
usingComparator(Comparator<? super Character> customComparator)
Use given custom comparator instead of relying on actual type A equals method for incoming assertion checks. |
S |
usingDefaultComparator()
Revert to standard comparison for incoming assertion checks. |
| Methods inherited from class org.assertj.core.api.AbstractComparableAssert |
|---|
inBinary, inHexadecimal, isGreaterThan, isGreaterThanOrEqualTo, isLessThan, isLessThanOrEqualTo |
| Methods inherited from class org.assertj.core.api.AbstractAssert |
|---|
as, as, describedAs, describedAs, descriptionText, doesNotHave, doesNotHaveSameClassAs, equals, failWithMessage, getWritableAssertionInfo, has, hashCode, hasSameClassAs, is, isEqualTo, isExactlyInstanceOf, isIn, isIn, isInstanceOf, isInstanceOfAny, isNot, isNotEqualTo, isNotExactlyInstanceOf, isNotIn, isNotIn, isNotInstanceOf, isNotInstanceOfAny, isNotNull, isNotOfAnyClassIn, isNotSameAs, isNull, isOfAnyClassIn, isSameAs, overridingErrorMessage |
| Methods inherited from class java.lang.Object |
|---|
clone, finalize, getClass, notify, notifyAll, toString, wait, wait, wait |
| Constructor Detail |
|---|
protected AbstractCharacterAssert(Character actual,
Class<?> selfType)
| Method Detail |
|---|
public S isEqualTo(char expected)
expected - the given value to compare the actual value to.
this assertion object.
AssertionError - if the actual value is null.
AssertionError - if the actual value is not equal to the given one.public S isNotEqualTo(char other)
other - the given value to compare the actual value to.
this assertion object.
AssertionError - if the actual value is null.
AssertionError - if the actual value is equal to the given one.public S isLessThan(char other)
Example:
// assertion will pass
assertThat('A').isLessThan('a');
assertThat('a').isLessThan('b');
// assertion will fail
assertThat('a').isLessThan('A');
assertThat('b').isLessThan('a');
other - the given value to compare the actual value to.
this assertion object.
AssertionError - if the actual value is null.
AssertionError - if the actual value is equal to or greater than the given one.public S isLessThanOrEqualTo(char other)
Example:
// assertion will pass
assertThat('A').isLessThanOrEqualTo('a');
assertThat('A').isLessThanOrEqualTo('A');
// assertion will fail
assertThat('b').isLessThanOrEqualTo('a');
other - the given value to compare the actual value to.
this assertion object.
AssertionError - if the actual value is null.
AssertionError - if the actual value is greater than the given one.public S isGreaterThan(char other)
Example:
// assertion will pass
assertThat('a').isGreaterThan('A');
assertThat('b').isGreaterThan('a');
// assertion will fail
assertThat('A').isGreaterThan('a');
assertThat('a').isGreaterThan('b');
other - the given value to compare the actual value to.
this assertion object.
AssertionError - if the actual value is null.
AssertionError - if the actual value is equal to or less than the given one.public S inUnicode()
assertThat('µ').isEqualTo('μ');
org.junit.ComparisonFailure:
Expected :'μ'
Actual :'µ'
With unicode based error message:
assertThat('µ').inUnicode().isEqualTo('μ');
org.junit.ComparisonFailure:
Expected :μ
Actual :µ
this assertion object.public S isGreaterThanOrEqualTo(char other)
Example:
// assertion will pass
assertThat('A').isGreaterThanOrEqualTo('A');
assertThat('b').isGreaterThanOrEqualTo('a');
// assertion will fail
assertThat('a').isGreaterThanOrEqualTo('b');
other - the given value to compare the actual value to.
this assertion object.
AssertionError - if the actual value is null.
AssertionError - if the actual value is less than the given one.public S isLowerCase()
Example:
// assertion will pass
assertThat('a').isLowerCase();
// assertion will fail
assertThat('A').isLowerCase();
this assertion object.
AssertionError - if the actual value is null.
AssertionError - if the actual value is not a lowercase character.public S isUpperCase()
Example:
// assertion will pass
assertThat('A').isLowerCase();
// assertion will fail
assertThat('a').isLowerCase();
this assertion object.
AssertionError - if the actual value is null.
AssertionError - if the actual value is not a uppercase character.public S usingComparator(Comparator<? super Character> customComparator)
AbstractAssertCustom comparator is bound to assertion instance, meaning that if a new assertion is created, it will use default comparison strategy.
Examples :
// frodo and sam are instances of Character with Hobbit race (obviously :). // raceComparator implements Comparator<Character> assertThat(frodo).usingComparator(raceComparator).isEqualTo(sam);
usingComparator in interface Assert<S extends AbstractCharacterAssert<S>,Character>usingComparator in class AbstractComparableAssert<S extends AbstractCharacterAssert<S>,Character>customComparator - the comparator to use for incoming assertion checks.
this assertion object.public S usingDefaultComparator()
AbstractAssert
This method should be used to disable a custom comparison strategy set by calling Assert.usingComparator(Comparator).
usingDefaultComparator in interface Assert<S extends AbstractCharacterAssert<S>,Character>usingDefaultComparator in class AbstractComparableAssert<S extends AbstractCharacterAssert<S>,Character>this assertion object.
|
||||||||||
| PREV CLASS NEXT CLASS | FRAMES NO FRAMES | |||||||||
| SUMMARY: NESTED | FIELD | CONSTR | METHOD | DETAIL: FIELD | CONSTR | METHOD | |||||||||