Package org.assertj.core.error
Class ShouldHaveSize
- java.lang.Object
-
- org.assertj.core.error.BasicErrorMessageFactory
-
- org.assertj.core.error.ShouldHaveSize
-
- All Implemented Interfaces:
ErrorMessageFactory
public class ShouldHaveSize extends BasicErrorMessageFactory
Creates an error message indicating that an assertion that verifies that a value have certain size failed.- Author:
- Alex Ruiz
-
-
Field Summary
Fields Modifier and Type Field Description private static StringSHOULD_HAVE_FILE_SIZEprivate static StringSHOULD_HAVE_PATH_SIZE-
Fields inherited from class org.assertj.core.error.BasicErrorMessageFactory
arguments, format, formatter
-
-
Constructor Summary
Constructors Modifier Constructor Description privateShouldHaveSize(File actual, long expectedSize)privateShouldHaveSize(Object actual, int actualSize, int expectedSize)privateShouldHaveSize(Object actual, int actualSize, int expectedSize, int firstDimensionArrayIndex)privateShouldHaveSize(Path actual, long expectedSize)
-
Method Summary
All Methods Static Methods Concrete Methods Modifier and Type Method Description static ErrorMessageFactoryshouldHaveSize(File actual, long expectedSize)Creates a newfor file size.ShouldHaveSizestatic ErrorMessageFactoryshouldHaveSize(Object actual, int actualSize, int expectedSize)Creates a new.ShouldHaveSizestatic ErrorMessageFactoryshouldHaveSize(Object actual, int actualSize, int expectedSize, int firstDimensionArrayIndex)Creates a new.ShouldHaveSizestatic ErrorMessageFactoryshouldHaveSize(Path actual, long expectedSize)Creates a newfor Path file sizeShouldHaveSize-
Methods inherited from class org.assertj.core.error.BasicErrorMessageFactory
create, create, create, equals, hashCode, toString, unquotedString
-
-
-
-
Field Detail
-
SHOULD_HAVE_FILE_SIZE
private static final String SHOULD_HAVE_FILE_SIZE
- See Also:
- Constant Field Values
-
SHOULD_HAVE_PATH_SIZE
private static final String SHOULD_HAVE_PATH_SIZE
- See Also:
- Constant Field Values
-
-
Constructor Detail
-
ShouldHaveSize
private ShouldHaveSize(Object actual, int actualSize, int expectedSize)
-
ShouldHaveSize
private ShouldHaveSize(Object actual, int actualSize, int expectedSize, int firstDimensionArrayIndex)
-
ShouldHaveSize
private ShouldHaveSize(File actual, long expectedSize)
-
ShouldHaveSize
private ShouldHaveSize(Path actual, long expectedSize) throws IOException
- Throws:
IOException
-
-
Method Detail
-
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
public static ErrorMessageFactory shouldHaveSize(Object actual, int actualSize, int expectedSize)
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
public static ErrorMessageFactory shouldHaveSize(File actual, long expectedSize)
Creates a newfor file size.ShouldHaveSize- Parameters:
actual- the actual file in the failed assertion.expectedSize- the expected file size.- Returns:
- the created
ErrorMessageFactory.
-
shouldHaveSize
public static ErrorMessageFactory shouldHaveSize(Path actual, long expectedSize) throws IOException
Creates a newfor 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
-
-