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