Class AssertionsOnColumnOfChangeClass
java.lang.Object
org.assertj.db.api.assertions.impl.AssertionsOnColumnOfChangeClass
Implements the assertion methods on the class of a column of a change.
- Author:
- Régis Pouiller
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionstatic <A extends AbstractAssert<?>>
AisOfClass
(A assertion, org.assertj.core.api.WritableAssertionInfo info, Value valueAtStartPoint, Value valueAtEndPoint, Class<?> expected, boolean lenient) Verifies that the class of the values of the column is equal to the class in parameter.
-
Method Details
-
isOfClass
public static <A extends AbstractAssert<?>> A isOfClass(A assertion, org.assertj.core.api.WritableAssertionInfo info, Value valueAtStartPoint, Value valueAtEndPoint, Class<?> expected, boolean lenient) Verifies that the class of the values of the column is equal to the class in parameter.- Type Parameters:
A
- The type of the assertion which call this method.- Parameters:
assertion
- The assertion which call this method.info
- Writable information about an assertion.valueAtStartPoint
- The value at start point.valueAtEndPoint
- The value at end point.expected
- The expected class to compare to.lenient
-true
if the test is lenient : if the class of a value is not identified (for example when the value isnull
), it consider that it is ok.- Returns:
this
assertion object.- Throws:
AssertionError
- If the class of the column is different to the class in parameter.- Since:
- 1.1.0
-