Uses of Class
org.fest.assertions.CharAssert

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 AssertionError 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 AssertionError thrown when an assertion fails.
static CharAssert Assertions.assertThat(char actual)
          Creates a new instance of CharAssert.
static CharAssert Assertions.assertThat(Character actual)
          Creates a new instance of CharAssert.
 CharAssert CharAssert.describedAs(Description description)
          Alias for GenericAssert.as(Description), since "as" is a keyword in Groovy.
 CharAssert CharAssert.describedAs(String description)
          Alias for GenericAssert.as(String), since "as" is a keyword in Groovy.
 CharAssert CharAssert.doesNotSatisfy(Condition<Character> condition)
          Verifies that the actual Character does not satisfy the given condition.
 CharAssert CharAssert.is(Condition<Character> condition)
          Alias for satisfies(Condition).
 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 Character 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 doesNotSatisfy(Condition).
 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 Character is not equal to the given one.
 CharAssert CharAssert.isNotNull()
          Verifies that the actual Character is not null.
 CharAssert CharAssert.isNotSameAs(Character other)
          Verifies that the actual Character is not the same object as the given one.
 CharAssert CharAssert.isSameAs(Character expected)
          Verifies that the actual Character 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 Character satisfies the given condition.
 



Copyright © 2007-2011 FEST (Fixtures for Easy Software Testing). All Rights Reserved.