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