public class Float2DArrayAssert extends Abstract2DArrayAssert<Float2DArrayAssert,float[][],Float>
floats.| Modifier and Type | Field and Description |
|---|---|
protected Float2DArrays |
float2dArrays |
actual, info, myself, objects, throwUnsupportedExceptionOnEquals| Constructor and Description |
|---|
Float2DArrayAssert(float[][] actual) |
| Modifier and Type | Method and Description |
|---|---|
Float2DArrayAssert |
contains(float[] value,
Index index)
Verifies that the actual array contains the given float[] at the given index.
|
Float2DArrayAssert |
doesNotContain(float[] value,
Index index)
Verifies that the actual array does not contain the given float[] at the given index.
|
Float2DArrayAssert |
hasDimensions(int expectedFirstDimension,
int expectedSecondDimension)
Verifies that the actual
float[][] has the given dimensions. |
Float2DArrayAssert |
hasNumberOfRows(int expected)
Verifies that the actual two-dimensional array has the given number of rows.
|
Float2DArrayAssert |
hasSameDimensionsAs(Object array)
Verifies that the actual
float[][] has the same dimensions as the given array. |
Float2DArrayAssert |
isDeepEqualTo(float[][] expected)
Verifies that the actual
float[][] is deeply equal to the given one. |
void |
isEmpty()
Verifies that the actual
float[][] is empty, empty means the array has no elements,
said otherwise it can have any number of rows but all rows must be empty. |
Float2DArrayAssert |
isEqualTo(Object expected)
Verifies that the actual
float[][] is equal to the given one. |
Float2DArrayAssert |
isNotEmpty()
Verifies that the actual
float[][] is not empty, not empty means the array has at least one element. |
void |
isNullOrEmpty()
Verifies that the actual
float[][] is null or empty, empty means the array has no elements,
said otherwise it can have any number of rows but all rows must be empty. |
areEqual, asInstanceOf, asList, assertionError, asString, describedAs, descriptionText, doesNotHave, doesNotHaveSameClassAs, doesNotHaveSameHashCodeAs, doesNotHaveToString, equals, extracting, extracting, failure, failureWithActualExpected, failWithActualExpectedAndMessage, failWithMessage, getWritableAssertionInfo, has, hashCode, hasSameClassAs, hasSameHashCodeAs, hasToString, inBinary, inHexadecimal, is, isElementOfCustomAssert, isExactlyInstanceOf, isIn, isIn, isInstanceOf, isInstanceOfAny, isInstanceOfSatisfying, isNot, isNotEqualTo, isNotExactlyInstanceOf, isNotIn, isNotIn, isNotInstanceOf, isNotInstanceOfAny, isNotNull, isNotOfAnyClassIn, isNotSameAs, isNull, isOfAnyClassIn, isSameAs, matches, matches, newListAssertInstance, overridingErrorMessage, overridingErrorMessage, satisfies, satisfies, satisfies, satisfiesAnyOf, satisfiesAnyOf, satisfiesAnyOfForProxy, satisfiesForProxy, setCustomRepresentation, setDescriptionConsumer, setPrintAssertionsDescription, throwAssertionError, usingComparator, usingComparator, usingDefaultComparator, usingRecursiveComparison, usingRecursiveComparison, withFailMessage, withFailMessage, withRepresentation, withThreadDumpOnErrorclone, finalize, getClass, notify, notifyAll, toString, wait, wait, waitas, as, as, describedAsprotected Float2DArrays float2dArrays
public Float2DArrayAssert isDeepEqualTo(float[][] expected)
float[][] is deeply equal to the given one.
Two arrays are considered deeply equal if both are null
or if they refer to arrays that contain the same number of elements and
all corresponding pairs of elements in the two arrays are deeply equal.
Example:
// assertion will pass
assertThat(new float[][] {{1.0f, 2.0f}, {3.0f, 4.0f}}).isDeepEqualTo(new float[][] {{1.0f, 2.0f}, {3.0f, 4.0f}});
// assertions will fail
assertThat(new float[][] {{1.0f, 2.0f}, {3.0f, 4.0f}}).isDeepEqualTo(new float[][] {{1.0f, 2.0f}, {9.0f, 10.0f}});
assertThat(new float[][] {{1.0f, 2.0f}, {3.0f, 4.0f}}).isDeepEqualTo(new float[][] {{1.0f, 2.0f, 3.0f}, {4.0f}});isDeepEqualTo in class Abstract2DArrayAssert<Float2DArrayAssert,float[][],Float>expected - the given value to compare the actual value to.this assertion object.AssertionError - if the actual value is not deeply equal to the given one.public Float2DArrayAssert isEqualTo(Object expected)
float[][] is equal to the given one.
WARNING! This method will use equals to compare (it will compare arrays references only).
Unless you specify a comparator with AbstractAssert.usingComparator(Comparator), it is advised to use
isDeepEqualTo(float[][]) instead.
Example:
float[][] array = {{1.0f, 2.0f}, {3.0f, 4.0f}};
// assertion will pass
assertThat(array).isEqualTo(array);
// assertion will fail as isEqualTo calls equals which compares arrays references only.
assertThat(array).isEqualTo(new float[][] {{1.0f, 2.0f}, {3.0f, 4.0f}});isEqualTo in interface Assert<Float2DArrayAssert,float[][]>isEqualTo in class AbstractAssert<Float2DArrayAssert,float[][]>expected - the given value to compare the actual float[][] to.this assertion object.AssertionError - if the actual float[][] is not equal to the given one.public void isNullOrEmpty()
float[][] is null or empty, empty means the array has no elements,
said otherwise it can have any number of rows but all rows must be empty.
Example:
// assertions will pass
float[][] array = null;
assertThat(array).isNullOrEmpty();
assertThat(new float[][] { }).isNullOrEmpty();
assertThat(new float[][] {{ }}).isNullOrEmpty();
// this is considered empty as there are no elements in the 2d array which is comprised of 3 empty rows.
assertThat(new float[][] {{ }, { }, { }}).isNullOrEmpty();
// assertion will fail
assertThat(new float[][] {{ 1.0 }, { 2.0 }}).isNullOrEmpty();AssertionError - if the actual float[][] is not null or not empty.public void isEmpty()
float[][] is empty, empty means the array has no elements,
said otherwise it can have any number of rows but all rows must be empty.
Example:
// assertions will pass
assertThat(new float[][] {{}}).isEmpty();
// this is considered empty as there are no elements in the 2d array which is comprised of 3 empty rows.
assertThat(new float[][] {{ }, { }, { }}).isEmpty();
// assertions will fail
assertThat(new float[][] {{ 1.0 }, { 2.0 }}).isEmpty();
float[][] array = null;
assertThat(array).isEmpty();AssertionError - if the actual float[][] is not empty.public Float2DArrayAssert isNotEmpty()
float[][] is not empty, not empty means the array has at least one element.
Example:
// assertions will pass
assertThat(new float[][] {{ 1.0 }, { 2.0 }}).isNotEmpty();
assertThat(new float[][] {{ }, { 2.0 }}).isNotEmpty();
// assertions will fail
assertThat(new float[][] { }).isNotEmpty();
assertThat(new float[][] {{ }}).isNotEmpty();
// this is considered empty as there are no elements in the 2d array which is comprised of 3 empty rows.
assertThat(new float[][] {{ }, { }, { }}).isNotEmpty();
float[][] array = null;
assertThat(array).isNotEmpty();this assertion object.AssertionError - if the actual float[][] is empty or null.public Float2DArrayAssert hasDimensions(int expectedFirstDimension, int expectedSecondDimension)
float[][] has the given dimensions.
Example:
// assertion will pass
assertThat(new float[][] {{1.0f, 2.0f, 3.0f}, {4.0f, 5.0f, 6.0f}}).hasDimensions(2, 3);
// assertions will fail
assertThat(new float[][] { }).hasSize(1, 1);
assertThat(new float[][] {{1.0f, 2.0f, 3.0f}, {4.0f, 5.0f, 6.0f}}).hasDimensions(3, 2);
assertThat(new float[][] {{1.0f, 2.0f, 3.0f}, {4.0f, 5.0f, 6.0f, 7.0f}}).hasDimensions(2, 3); expectedFirstDimension - the expected number of values in first dimension of the actual float[][].expectedSecondDimension - the expected number of values in second dimension of the actual float[][].this assertion object.AssertionError - if the actual float[][]'s dimensions are not equal to the given ones.public Float2DArrayAssert hasNumberOfRows(int expected)
Example:
// assertion will pass
assertThat(new float[][] {{1.0f, 2.0f, 3.0f}, {4.0f, 5.0f, 6.0f}}).hasNumberOfRows(2);
assertThat(new float[][] {{1.0f}, {1.0f, 2.0f}, {1.0f, 2.0f, 3.0f}}).hasNumberOfRows(3);
// assertions will fail
assertThat(new float[][] { }).hasNumberOfRows(1);
assertThat(new float[][] {{1.0f, 2.0f, 3.0f}, {4.0f, 5.0f, 6.0f}}).hasNumberOfRows(3);
assertThat(new float[][] {{1.0f, 2.0f, 3.0f}, {4.0f, 5.0f, 6.0f, 7.0f}}).hasNumberOfRows(1); expected - the expected number of rows of the two-dimensional array.this assertion object.AssertionError - if the actual number of rows are not equal to the given one.public Float2DArrayAssert hasSameDimensionsAs(Object array)
float[][] has the same dimensions as the given array.
Parameter is declared as Object to accept both Object and primitive arrays.
Example: float[][] floatArray = {{1.0f, 2.0f, 3.0f}, {4.0f, 5.0f, 6.0f}};
char[][] charArray = {{'a', 'b', 'c'}, {'d', 'e', 'f'}};
// assertion will pass
assertThat(floatArray).hasSameDimensionsAs(charArray);
// assertions will fail
assertThat(floatArray).hasSameDimensionsAs(new char[][] {{'a', 'b'}, {'c', 'd'}, {'e', 'f'}});
assertThat(floatArray).hasSameDimensionsAs(new char[][] {{'a', 'b'}, {'c', 'd', 'e'}});
assertThat(floatArray).hasSameDimensionsAs(new char[][] {{'a', 'b', 'c'}, {'d', 'e'}});array - the array to compare dimensions with actual float[][].this assertion object.AssertionError - if the actual float[][] is null.AssertionError - if the array parameter is null or is not a true array.AssertionError - if actual float[][] and given array don't have the same dimensions.public Float2DArrayAssert contains(float[] value, Index index)
Example:
float[][] values = new float[][] {{1.0f, 2.0f}, {3.0f, 4.0f}, {5.0f, 6.0f}};
// assertion will pass
assertThat(values).contains(new float[] {1.0f, 2.0f}, atIndex(O))
.contains(new float[] {5.0f, 6.0f}, atIndex(2));
// assertions will fail
assertThat(values).contains(new float[] {1.0f, 2.0f}, atIndex(1));
assertThat(values).contains(new float[] {7.0f, 8.0f}, atIndex(2));value - the value to look for.index - the index where the value should be stored in the actual array.this assertion object.AssertionError - if the actual array is null or empty.NullPointerException - if the given Index is null.IndexOutOfBoundsException - if the value of the given Index is equal to or greater than the size of
the actual array.AssertionError - if the actual array does not contain the given value at the given index.public Float2DArrayAssert doesNotContain(float[] value, Index index)
Example:
float[][] values = new float[][] {{1.0f, 2.0f}, {3.0f, 4.0f}, {5.0f, 6.0f}};
// assertion will pass
assertThat(values).doesNotContain(new float[] {1.0f, 2.0f}, atIndex(1))
.doesNotContain(new float[] {3.0f, 4.0f}, atIndex(0));
// assertion will fail
assertThat(values).doesNotContain(new float[] {1.0f, 2.0f}, atIndex(0));value - the value to look for.index - the index where the value should be stored in the actual array.this assertion object.AssertionError - if the actual array is null.NullPointerException - if the given Index is null.AssertionError - if the actual array contains the given value at the given index.Copyright © 2025. All rights reserved.