T
- The "self" type of this assertion class. Please read "Emulating 'self types' using Java Generics to simplify fluent API implementation"
for more details.public interface AssertOnModifiedColumn<T extends AssertOnModifiedColumn<T>>
Modifier and Type | Method and Description |
---|---|
T |
isModified()
Verifies that the column is modified between the start point and the end point.
|
T |
isNotModified()
Verifies that the column is not modified between the start point and the end point.
|
T isModified()
Example where the assertion verifies that :
assertThat(changes).change(1).column().isModified();
this
assertion object.AssertionError
- If the column is not modified between the start point and the end point.ChangeColumnAssert.isModified()
T isNotModified()
Example where the assertion verifies that :
assertThat(changes).change(1).column().isNotModified();
this
assertion object.AssertionError
- If the column is modified between the start point and the end point.ChangeColumnAssert.isNotModified()
Copyright © 2015 AssertJ. All Rights Reserved.