Package org.assertj.core.internal
Class Short2DArrays
java.lang.Object
org.assertj.core.internal.Short2DArrays
Reusable assertions for two-dimensional arrays of
short
s.-
Field Summary
Fields -
Constructor Summary
Constructors -
Method Summary
Modifier and TypeMethodDescriptionvoid
assertContains
(AssertionInfo info, short[][] actual, short[] value, Index index) Verifies that the given array contains the given value at the given index.void
assertDoesNotContain
(AssertionInfo info, short[][] actual, short[] value, Index index) Verifies that the given array does not contain the given value at the given index.void
assertEmpty
(AssertionInfo info, short[][] actual) Asserts that the given array is empty.void
assertHasDimensions
(AssertionInfo info, short[][] actual, int expectedFirstDimensionSize, int expectedSecondDimensionSize) Asserts that the number of elements in the given array is equal to the expected one.void
assertHasSameDimensionsAs
(AssertionInfo info, short[][] actual, Object other) Assert that the actual array has the same dimensions as the other array.void
assertNotEmpty
(AssertionInfo info, short[][] actual) Asserts that the given array is not empty.void
assertNullOrEmpty
(AssertionInfo info, short[][] actual) Asserts that the given array isnull
or empty.void
assertNumberOfRows
(AssertionInfo info, short[][] actual, int expectedNumberOfRows) Asserts that the number of rows in the given array is equal to the expected one.static Short2DArrays
instance()
Returns the singleton instance of this class.void
-
Field Details
-
INSTANCE
-
arrays
-
failures
Failures failures
-
-
Constructor Details
-
Short2DArrays
public Short2DArrays()
-
-
Method Details
-
instance
Returns the singleton instance of this class.- Returns:
- the singleton instance of this class.
-
setArrays
-
assertNullOrEmpty
Asserts that the given array isnull
or empty.- Parameters:
info
- contains information about the assertion.actual
- the given array.- Throws:
AssertionError
- if the given array is notnull
*and* contains one or more elements.
-
assertEmpty
Asserts that the given array is empty.- Parameters:
info
- contains information about the assertion.actual
- the given array.- Throws:
AssertionError
- if the given array isnull
.AssertionError
- if the given array is not empty.
-
assertNotEmpty
Asserts that the given array is not empty.- Parameters:
info
- contains information about the assertion.actual
- the given array.- Throws:
AssertionError
- if the given array isnull
.AssertionError
- if the given array is empty.
-
assertHasDimensions
public void assertHasDimensions(AssertionInfo info, short[][] actual, int expectedFirstDimensionSize, int expectedSecondDimensionSize) Asserts that the number of elements in the given array is equal to the expected one.- Parameters:
info
- contains information about the assertion.actual
- the given array.expectedFirstDimensionSize
- the expected first dimension size ofactual
.expectedSecondDimensionSize
- the expected second dimension size ofactual
.- Throws:
AssertionError
- if the given array isnull
.AssertionError
- if the actual array's dimensions are not equal to the given ones.
-
assertHasSameDimensionsAs
Assert that the actual array has the same dimensions as the other array.- Parameters:
info
- contains information about the assertion.actual
- the given array.other
- the group to compare- Throws:
AssertionError
- if the actual group isnull
.AssertionError
- if the other group isnull
.AssertionError
- if the actual group does not have the same dimension.
-
assertNumberOfRows
Asserts that the number of rows in the given array is equal to the expected one.- Parameters:
info
- contains information about the assertion.actual
- the given array.expectedNumberOfRows
- the expected first dimension size ofactual
.
-
assertContains
Verifies that the given array contains the given value at the given index.- Parameters:
info
- contains information about the assertion.actual
- the given array.value
- the value to look for.index
- the index where the value should be stored in the given array.- Throws:
AssertionError
- if the given array isnull
or empty.NullPointerException
- if the givenIndex
isnull
.IndexOutOfBoundsException
- if the value of the givenIndex
is equal to or greater than the size of the given array.AssertionError
- if the given array does not contain the given value at the given index.
-
assertDoesNotContain
Verifies that the given array does not contain the given value at the given index.- Parameters:
info
- contains information about the assertion.actual
- the given array.value
- the value to look for.index
- the index where the value should be stored in the given array.- Throws:
AssertionError
- if the given array isnull
.NullPointerException
- if the givenIndex
isnull
.AssertionError
- if the given array contains the given value at the given index.
-