-
DoubleArrayAssert.as(String description)
Sets the description of the actual value, to be used in as message of any
AssertionError
thrown when an assertion fails.
Sets the description of the actual value, to be used in as message of any
AssertionError
thrown when an assertion fails.
DoubleArrayAssert.contains(double... values)
Verifies that the actual double
array contains the given values.
Verifies that the actual double
array contains the given values only.
Verifies that the actual double
array does not satisfy the given condition.
DoubleArrayAssert.excludes(double... values)
Verifies that the actual double
array does not contain the given values.
DoubleArrayAssert.hasSize(int expected)
Verifies that the number of elements in the actual double
array is equal to the given one.
DoubleArrayAssert.isEqualTo(double[] expected)
Verifies that the actual double
array is equal to the given array.
Verifies that the actual double
array is equal to the given array, within a positive delta.
Verifies that the actual double
array contains at least on element.
Verifies that the actual double
array is not equal to the given array.
Verifies that the actual double
array is not null
.
Verifies that the actual double
array is not the same as the given array.
DoubleArrayAssert.isSameAs(double[] expected)
Verifies that the actual double
array is the same as the given array.
Replaces the default message displayed in case of a failure with the given one.
Verifies that the actual double
array satisfies the given condition.