Modifier and Type | Method and Description |
---|---|
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.excludes(double... values)
Verifies that the actual
double array does not contain the given values. |
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.isNotEqualTo(double[] array)
Verifies that the actual
double array is not equal to the given array. |
Copyright © 2007-2013 FEST (Fixtures for Easy Software Testing). All Rights Reserved.