|
||||||||||
PREV NEXT | FRAMES NO FRAMES |
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
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
thrown when an assertion fails. |
static IntArrayAssert |
Assertions.assertThat(int[] actual)
Creates a new instance of . |
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 , since "as" is a keyword in
Groovy. |
IntArrayAssert |
IntArrayAssert.describedAs(String description)
Alias for , 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 . |
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 . |
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. |
|
||||||||||
PREV NEXT | FRAMES NO FRAMES |