Class AssertionsOnModifiedColumn
java.lang.Object
org.assertj.db.api.assertions.impl.AssertionsOnModifiedColumn
Implements the assertion methods on a modified column.
- Author:
- Régis Pouiller
- See Also:
-
Method Summary
Modifier and TypeMethodDescriptionstatic <A extends AbstractAssert<?>>
AisModified
(A assertion, org.assertj.core.api.WritableAssertionInfo info, Value valueAtStartPoint, Value valueAtEndPoint) Verifies that the column is modified between the start point and the end point.static <A extends AbstractAssert<?>>
AisNotModified
(A assertion, org.assertj.core.api.WritableAssertionInfo info, Value valueAtStartPoint, Value valueAtEndPoint) Verifies that the column is not modified between the start point and the end point.
-
Method Details
-
isModified
public static <A extends AbstractAssert<?>> A isModified(A assertion, org.assertj.core.api.WritableAssertionInfo info, Value valueAtStartPoint, Value valueAtEndPoint) Verifies that the column is modified between the start point and the end point.- 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.- Returns:
this
assertion object.- Throws:
AssertionError
- If the column is not modified between the start point and the end point.
-
isNotModified
public static <A extends AbstractAssert<?>> A isNotModified(A assertion, org.assertj.core.api.WritableAssertionInfo info, Value valueAtStartPoint, Value valueAtEndPoint) Verifies that the column is not modified between the start point and the end point.- 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.- Returns:
this
assertion object.- Throws:
AssertionError
- If the column is modified between the start point and the end point.
-