Uses of Class
org.fest.assertions.IntArrayAssert

Uses of IntArrayAssert in org.fest.assertions
 

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



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