Uses of Class
org.fest.assertions.CharArrayAssert

Uses of CharArrayAssert in org.fest.assertions
 

Methods in org.fest.assertions that return CharArrayAssert
 CharArrayAssert CharArrayAssert.as(Description description)
          Sets the description of the actual value, to be used in as message of any AssertionError thrown when an assertion fails.
 CharArrayAssert CharArrayAssert.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 CharArrayAssert Assertions.assertThat(char[] actual)
          Creates a new instance of CharArrayAssert.
 CharArrayAssert CharArrayAssert.contains(char... values)
          Verifies that the actual char array contains the given values.
 CharArrayAssert CharArrayAssert.containsOnly(char... values)
          Verifies that the actual char array contains the given values only.
 CharArrayAssert CharArrayAssert.describedAs(Description description)
          Alias for as(Description), since "as" is a keyword in Groovy.
 CharArrayAssert CharArrayAssert.describedAs(String description)
          Alias for as(String), since "as" is a keyword in Groovy.
 CharArrayAssert CharArrayAssert.doesNotSatisfy(Condition<char[]> condition)
          Verifies that the actual char array does not satisfy the given condition.
 CharArrayAssert CharArrayAssert.excludes(char... values)
          Verifies that the actual char array does not contain the given values.
 CharArrayAssert CharArrayAssert.hasSize(int expected)
          Verifies that the number of elements in the actual char array is equal to the given one.
 CharArrayAssert CharArrayAssert.is(Condition<char[]> condition)
          Alias for satisfies(Condition).
 CharArrayAssert CharArrayAssert.isEqualTo(char[] expected)
          Verifies that the actual char array is equal to the given array.
 CharArrayAssert CharArrayAssert.isNot(Condition<char[]> condition)
          Alias for doesNotSatisfy(Condition).
 CharArrayAssert CharArrayAssert.isNotEmpty()
          Verifies that the actual char array contains at least on element.
 CharArrayAssert CharArrayAssert.isNotEqualTo(char[] array)
          Verifies that the actual char array is not equal to the given array.
 CharArrayAssert CharArrayAssert.isNotNull()
          Verifies that the actual char array is not null.
 CharArrayAssert CharArrayAssert.isNotSameAs(char[] expected)
          Verifies that the actual char array is not the same as the given array.
 CharArrayAssert CharArrayAssert.isSameAs(char[] expected)
          Verifies that the actual char array is the same as the given array.
 CharArrayAssert CharArrayAssert.overridingErrorMessage(String message)
          Replaces the default message displayed in case of a failure with the given one.
 CharArrayAssert CharArrayAssert.satisfies(Condition<char[]> condition)
          Verifies that the actual char array satisfies the given condition.
 



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