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 as(Description), since "as" is a keyword in Groovy.
 CharAssert CharAssert.describedAs(String description)
          Alias for as(String), since "as" is a keyword in Groovy.
 CharAssert CharAssert.isEqualTo(char expected)
          Verifies that the actual char value is equal to the given one.
 CharAssert CharAssert.isGreaterThan(char other)
          Verifies that the actual char value is greater than the given one.
 CharAssert CharAssert.isGreaterThanOrEqualTo(char other)
          Verifies that the actual char value is greater or equal to the given one.
 CharAssert CharAssert.isLessThan(char other)
          Verifies that the actual char value is less than the given one.
 CharAssert CharAssert.isLessThanOrEqualTo(char other)
          Verifies that the actual char value is less or equal to the given one.
 CharAssert CharAssert.isLowerCase()
          Verifies that the actual char value is an lowercase value.
 CharAssert CharAssert.isNotEqualTo(char other)
          Verifies that the actual char value is not equal to the given one.
 CharAssert CharAssert.isUpperCase()
          Verifies that the actual char value is an uppercase value.
 CharAssert CharAssert.overridingErrorMessage(String message)
          Replaces the default message displayed in case of a failure with the given one.
 



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