Uses of Class
org.assertj.db.api.ChangesAssert
Packages that use ChangesAssert
Package
Description
This package contains the API of assertj-db (and especially the entry point class
Assertions
).-
Uses of ChangesAssert in org.assertj.db.api
Classes in org.assertj.db.api with type parameters of type ChangesAssertModifier and TypeClassDescriptionclass
AbstractAssertWithOriginWithChanges<E extends AbstractAssertWithOriginWithChanges<E,
O>, O extends OriginWithChanges<ChangesAssert, ChangeAssert>> class
AbstractAssertWithOriginWithColumnsAndRowsFromChange<E extends AbstractAssertWithOriginWithColumnsAndRowsFromChange<E,
O>, O extends OriginWithColumnsAndRowsFromChange<ChangesAssert, ChangeAssert, ChangeColumnAssert, ChangeRowAssert>> class
AbstractAssertWithValues<E extends AbstractAssertWithValues<E,
O>, O extends OriginWithColumnsAndRowsFromChange<ChangesAssert, ChangeAssert, ChangeColumnAssert, ChangeRowAssert>> Base class for all values from aChange
assertions.Methods in org.assertj.db.api that return ChangesAssertModifier and TypeMethodDescriptionstatic ChangesAssert
Assertions.assertThat
(Changes changes) Creates a new instance ofChangesAssert
.SoftAssertions.assertThat
(Changes changes) Creates a new instance ofChangesAssert
.ChangesAssert.hasNumberOfChanges
(int expected) Verifies that the number of changes is equal to the number in parameter.ChangesAssert.hasNumberOfChangesGreaterThan
(int expected) Verifies that the number of changes is greater than the number in parameter.ChangesAssert.hasNumberOfChangesGreaterThanOrEqualTo
(int expected) Verifies that the number of changes is greater than or equal to the number in parameter.ChangesAssert.hasNumberOfChangesLessThan
(int expected) Verifies that the number of changes is less than the number in parameter.ChangesAssert.hasNumberOfChangesLessThanOrEqualTo
(int expected) Verifies that the number of changes is less than or equal to the number in parameter.AbstractAssertWithOriginWithChanges.ofAll()
Returns an assertion of all the changes.ChangesAssert.ofAll()
Returns an assertion of all the changes.AbstractAssertWithOriginWithChanges.ofCreation()
Returns an assertion of the changes of creation (ChangeType.CREATION
).ChangesAssert.ofCreation()
Returns an assertion of the changes of creation (ChangeType.CREATION
).AbstractAssertWithOriginWithChanges.ofCreationOnTable
(String tableName) Returns an assertion of the changes of creation (ChangeType.CREATION
) on a table.ChangesAssert.ofCreationOnTable
(String tableName) Returns an assertion of the changes of creation (ChangeType.CREATION
) on a table.AbstractAssertWithOriginWithChanges.ofDeletion()
Returns an assertion of the changes of deletion (ChangeType.DELETION
).ChangesAssert.ofDeletion()
Returns an assertion of the changes of deletion (ChangeType.DELETION
).AbstractAssertWithOriginWithChanges.ofDeletionOnTable
(String tableName) Returns an assertion of the changes of deletion (ChangeType.DELETION
) on a table.ChangesAssert.ofDeletionOnTable
(String tableName) Returns an assertion of the changes of deletion (ChangeType.DELETION
) on a table.AbstractAssertWithOriginWithChanges.ofModification()
Returns an assertion of the changes of modification (ChangeType.MODIFICATION
).ChangesAssert.ofModification()
Returns an assertion of the changes of modification (ChangeType.MODIFICATION
).AbstractAssertWithOriginWithChanges.ofModificationOnTable
(String tableName) Returns an assertion of the changes of modification (ChangeType.MODIFICATION
) on a table.ChangesAssert.ofModificationOnTable
(String tableName) Returns an assertion of the changes of modification (ChangeType.MODIFICATION
) on a table.Returns an assertion of the changes on a table.Returns an assertion of the changes on a table.ChangeAssert.returnToChanges()
Returns to level of assertion methods onChanges
.static ChangesAssert
Creates a new instance ofChangesAssert
.Constructors in org.assertj.db.api with parameters of type ChangesAssertModifierConstructorDescriptionChangeAssert
(ChangesAssert origin, Change change) Constructor.ChangesAssert
(ChangesAssert origin, Changes changes) Constructor.