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

Packages that use ShortArrayAssert
org.fest.assertions.api   
 

Uses of ShortArrayAssert in org.fest.assertions.api
 

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



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