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

Packages that use LongArrayAssert
org.fest.assertions.api   
 

Uses of LongArrayAssert in org.fest.assertions.api
 

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



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