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

Packages that use DoubleArrayAssert
org.fest.assertions.api   
 

Uses of DoubleArrayAssert in org.fest.assertions.api
 

Methods in org.fest.assertions.api that return DoubleArrayAssert
static DoubleArrayAssert Assertions.assertThat(double[] actual)
          Creates a new instance of DoubleArrayAssert.
 DoubleArrayAssert DoubleArrayAssert.contains(double... values)
          Verifies that the actual array contains the given values, in any order.
 DoubleArrayAssert DoubleArrayAssert.contains(double value, Index index)
          Verifies that the actual array contains the given value at the given index.
 DoubleArrayAssert DoubleArrayAssert.containsOnly(double... values)
          Verifies that the actual array contains only the given values and nothing else, in any order.
 DoubleArrayAssert DoubleArrayAssert.containsSequence(double... sequence)
          Verifies that the actual array contains the given sequence, without any other values between them.
 DoubleArrayAssert DoubleArrayAssert.doesNotContain(double... values)
          Verifies that the actual array does not contain the given values.
 DoubleArrayAssert DoubleArrayAssert.doesNotContain(double value, Index index)
          Verifies that the actual array does not contain the given value at the given index.
 DoubleArrayAssert DoubleArrayAssert.doesNotHaveDuplicates()
          Verifies that the actual array does not contain duplicates.
 DoubleArrayAssert DoubleArrayAssert.endsWith(double... sequence)
          Verifies that the actual array ends with the given sequence of values, without any other values between them.
 DoubleArrayAssert DoubleArrayAssert.hasSameSizeAs(Iterable<?> other)
          Verifies that the actual group has the same size as given Iterable.
 DoubleArrayAssert DoubleArrayAssert.hasSameSizeAs(Object[] other)
          Verifies that the actual group has the same size as given array.
 DoubleArrayAssert DoubleArrayAssert.hasSize(int expected)
          Verifies that the number of values in the actual group is equal to the given one.
 DoubleArrayAssert DoubleArrayAssert.isNotEmpty()
          Verifies that the actual group of values is not empty.
 DoubleArrayAssert DoubleArrayAssert.isSorted()
          Verifies that the actual array is sorted into ascending order according to the natural ordering of its elements.
 DoubleArrayAssert DoubleArrayAssert.isSortedAccordingTo(Comparator<? super Double> comparator)
          Verifies that the actual array is sorted according to the given comparator.
Empty arrays are considered sorted whatever the comparator is.
One element arrays are considered sorted if element is compatible with comparator, otherwise an AssertionError is thrown.
 DoubleArrayAssert DoubleArrayAssert.startsWith(double... sequence)
          Verifies that the actual array starts with the given sequence of values, without any other values between them.
 DoubleArrayAssert DoubleArrayAssert.usingDefaultElementComparator()
          Revert to standard comparison for incoming assertion group element checks.
 DoubleArrayAssert DoubleArrayAssert.usingElementComparator(Comparator<? super Double> customComparator)
          Use given custom comparator instead of relying on actual type A equals method to compare group elements for incoming assertion checks.
 



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