Package org.assertj.core.error
Class ShouldHaveSize
java.lang.Object
org.assertj.core.error.BasicErrorMessageFactory
org.assertj.core.error.ShouldHaveSize
- All Implemented Interfaces:
ErrorMessageFactory
Creates an error message indicating that an assertion that verifies that a value have certain size failed.
-
Field Summary
FieldsFields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format, formatter
-
Constructor Summary
ConstructorsModifierConstructorDescriptionprivate
ShouldHaveSize
(File actual, long expectedSize) private
ShouldHaveSize
(Object actual, int actualSize, int expectedSize) private
ShouldHaveSize
(Object actual, int actualSize, int expectedSize, int firstDimensionArrayIndex) private
ShouldHaveSize
(Path actual, long expectedSize) -
Method Summary
Modifier and TypeMethodDescriptionstatic ErrorMessageFactory
shouldHaveSize
(File actual, long expectedSize) Creates a new
for file size.ShouldHaveSize
static ErrorMessageFactory
shouldHaveSize
(Object actual, int actualSize, int expectedSize) Creates a new
.ShouldHaveSize
static ErrorMessageFactory
shouldHaveSize
(Object actual, int actualSize, int expectedSize, int firstDimensionArrayIndex) Creates a new
.ShouldHaveSize
static ErrorMessageFactory
shouldHaveSize
(Path actual, long expectedSize) Creates a new
for Path file sizeShouldHaveSize
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
Field Details
-
SHOULD_HAVE_FILE_SIZE
- See Also:
-
SHOULD_HAVE_PATH_SIZE
- See Also:
-
-
Constructor Details
-
ShouldHaveSize
-
ShouldHaveSize
private ShouldHaveSize(Object actual, int actualSize, int expectedSize, int firstDimensionArrayIndex) -
ShouldHaveSize
-
ShouldHaveSize
- Throws:
IOException
-
-
Method Details
-
shouldHaveSize
public static ErrorMessageFactory shouldHaveSize(Object actual, int actualSize, int expectedSize, int firstDimensionArrayIndex) Creates a new
.ShouldHaveSize
- Parameters:
actual
- the actual value in the failed assertion.actualSize
- the size ofactual
.expectedSize
- the expected size.firstDimensionArrayIndex
- Index of first dimension of array- Returns:
- the created
ErrorMessageFactory
.
-
shouldHaveSize
Creates a new
.ShouldHaveSize
- Parameters:
actual
- the actual value in the failed assertion.actualSize
- the size ofactual
.expectedSize
- the expected size.- Returns:
- the created
ErrorMessageFactory
.
-
shouldHaveSize
Creates a new
for file size.ShouldHaveSize
- Parameters:
actual
- the actual file in the failed assertion.expectedSize
- the expected file size.- Returns:
- the created
ErrorMessageFactory
.
-
shouldHaveSize
Creates a new
for Path file sizeShouldHaveSize
- Parameters:
actual
- The actual path file in the failed assertionexpectedSize
- The expected size of the path file- Returns:
- the created
ErrorMessageFactory
- Throws:
IOException
- if an I/O error occurs
-