Uses of Class
org.fest.assertions.api.CharArrayAssert

Packages that use CharArrayAssert
org.fest.assertions.api   
 

Uses of CharArrayAssert in org.fest.assertions.api
 

Methods in org.fest.assertions.api that return CharArrayAssert
static CharArrayAssert Assertions.assertThat(char[] actual)
          Creates a new instance of CharArrayAssert.
 CharArrayAssert CharArrayAssert.contains(char... values)
          Verifies that the actual array contains the given values, in any order.
 CharArrayAssert CharArrayAssert.contains(char value, Index index)
          Verifies that the actual array contains the given value at the given index.
 CharArrayAssert CharArrayAssert.containsOnly(char... values)
          Verifies that the actual array contains only the given values and nothing else, in any order.
 CharArrayAssert CharArrayAssert.containsSequence(char... sequence)
          Verifies that the actual array contains the given sequence, without any other values between them.
 CharArrayAssert CharArrayAssert.doesNotContain(char... values)
          Verifies that the actual array does not contain the given values.
 CharArrayAssert CharArrayAssert.doesNotContain(char value, Index index)
          Verifies that the actual array does not contain the given value at the given index.
 CharArrayAssert CharArrayAssert.doesNotHaveDuplicates()
          Verifies that the actual array does not contain duplicates.
 CharArrayAssert CharArrayAssert.endsWith(char... sequence)
          Verifies that the actual array ends with the given sequence of values, without any other values between them.
 CharArrayAssert CharArrayAssert.hasSize(int expected)
          Verifies that the number of values in the actual group is equal to the given one.
 CharArrayAssert CharArrayAssert.isNotEmpty()
          Verifies that the actual group of values is not empty.
 CharArrayAssert CharArrayAssert.isSorted()
          Verifies that the actual array is sorted into ascending order according to the natural ordering of its elements.
 CharArrayAssert CharArrayAssert.isSortedAccordingTo(Comparator<? extends Character> comparator)
          Verifies that the actual array is sorted according to the given comparator.
 CharArrayAssert CharArrayAssert.startsWith(char... sequence)
          Verifies that the actual array starts with the given sequence of values, without any other values between them.
 CharArrayAssert CharArrayAssert.usingComparator(Comparator<?> customComparator)
           
 CharArrayAssert CharArrayAssert.usingDefaultComparator()
           
 



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