|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
Uses of CharAssert in org.fest.assertions |
---|
Methods in org.fest.assertions that return CharAssert | |
---|---|
CharAssert |
CharAssert.as(Description description)
Sets the description of the actual value, to be used in as message of any
thrown when an assertion fails. |
CharAssert |
CharAssert.as(String description)
Sets the description of the actual value, to be used in as message of any
thrown when an assertion fails. |
static CharAssert |
Assertions.assertThat(char actual)
Creates a new instance of . |
static CharAssert |
Assertions.assertThat(Character actual)
Creates a new instance of . |
CharAssert |
CharAssert.describedAs(Description description)
Alias for , since "as" is a keyword in
Groovy. |
CharAssert |
CharAssert.describedAs(String description)
Alias for , since "as" is a keyword in
Groovy. |
CharAssert |
CharAssert.doesNotSatisfy(Condition<Character> condition)
Verifies that the actual does not satisfy the given condition. |
CharAssert |
CharAssert.is(Condition<Character> condition)
Alias for . |
CharAssert |
CharAssert.isEqualTo(char expected)
Verifies that the Character value is equal to the given one. |
CharAssert |
CharAssert.isEqualTo(Character expected)
Verifies that the actual value is equal to the given one. |
CharAssert |
CharAssert.isGreaterThan(char other)
Verifies that the Character value is greater than the given one. |
CharAssert |
CharAssert.isGreaterThanOrEqualTo(char other)
Verifies that the Character value is greater or equal to the given one. |
CharAssert |
CharAssert.isLessThan(char other)
Verifies that the Character value is less than the given one. |
CharAssert |
CharAssert.isLessThanOrEqualTo(char other)
Verifies that the Character value is less or equal to the given one. |
CharAssert |
CharAssert.isLowerCase()
Verifies that the Character value is an lower-case value. |
CharAssert |
CharAssert.isNot(Condition<Character> condition)
Alias for . |
CharAssert |
CharAssert.isNotEqualTo(char other)
Verifies that the Character value is not equal to the given one. |
CharAssert |
CharAssert.isNotEqualTo(Character other)
Verifies that the actual is not equal to the given one. |
CharAssert |
CharAssert.isNotNull()
Verifies that the actual is not null . |
CharAssert |
CharAssert.isNotSameAs(Character other)
Verifies that the actual is not the same object as the given one. |
CharAssert |
CharAssert.isSameAs(Character expected)
Verifies that the actual is the same object as the given one. |
CharAssert |
CharAssert.isUpperCase()
Verifies that the Character value is an upper-case value. |
CharAssert |
CharAssert.overridingErrorMessage(String message)
Replaces the default message displayed in case of a failure with the given one. |
CharAssert |
CharAssert.satisfies(Condition<Character> condition)
Verifies that the actual satisfies the given condition. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |