public class AssertionsOnModifiedColumn extends Object
AssertOnModifiedColumn
Modifier and Type | Method and Description |
---|---|
static <A extends AbstractAssert<?>> |
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.
|
static <A extends AbstractAssert<?>> |
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.
|
public static <A extends AbstractAssert<?>> A isModified(A assertion, org.assertj.core.api.WritableAssertionInfo info, Value valueAtStartPoint, Value valueAtEndPoint)
A
- The type of the assertion which call this method.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.this
assertion object.AssertionError
- If the column is not modified between the start point and the end point.public static <A extends AbstractAssert<?>> A isNotModified(A assertion, org.assertj.core.api.WritableAssertionInfo info, Value valueAtStartPoint, Value valueAtEndPoint)
A
- The type of the assertion which call this method.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.this
assertion object.AssertionError
- If the column is modified between the start point and the end point.Copyright © 2015–2017 AssertJ. All rights reserved.