Package | Description |
---|---|
org.assertj.db.api |
This package contains the API of assertj-db (and especially the entry point class
Assertions ). |
Modifier and Type | Method and Description |
---|---|
ChangeColumnAssert |
ChangeAssert.column()
|
ChangeColumnAssert |
AbstractAssertWithOriginWithColumnsAndRowsFromChange.column()
|
ChangeColumnAssert |
ChangeAssert.column(int index)
Returns assertion methods on the
Column at the index in parameter. |
ChangeColumnAssert |
AbstractAssertWithOriginWithColumnsAndRowsFromChange.column(int index)
Returns assertion methods on the
Column at the index in parameter. |
ChangeColumnAssert |
ChangeAssert.column(String columnName)
Returns assertion methods on the
Column corresponding to the column name in parameter. |
ChangeColumnAssert |
AbstractAssertWithOriginWithColumnsAndRowsFromChange.column(String columnName)
Returns assertion methods on the
Column corresponding to the column name in parameter. |
ChangeColumnAssert |
ChangeAssert.columnAmongTheModifiedOnes()
|
ChangeColumnAssert |
AbstractAssertWithOriginWithColumnsAndRowsFromChange.columnAmongTheModifiedOnes()
|
ChangeColumnAssert |
ChangeAssert.columnAmongTheModifiedOnes(int index)
|
ChangeColumnAssert |
AbstractAssertWithOriginWithColumnsAndRowsFromChange.columnAmongTheModifiedOnes(int index)
|
ChangeColumnAssert |
ChangeAssert.columnAmongTheModifiedOnes(String columnName)
|
ChangeColumnAssert |
AbstractAssertWithOriginWithColumnsAndRowsFromChange.columnAmongTheModifiedOnes(String columnName)
|
ChangeColumnAssert |
ChangeColumnAssert.hasColumnName(String columnName)
Verifies that the name of a column is equal to the parameter.
|
ChangeColumnAssert |
ChangeColumnAssert.hasValues(Boolean expected)
Verifies that the values at the start point and the end point are equal to a boolean.
|
ChangeColumnAssert |
ChangeColumnAssert.hasValues(Boolean expectedAtStartPoint,
Boolean expectedAtEndPoint)
Verifies that the values at the start point and the end point are equal to a boolean for start point and another boolean for end point.
|
ChangeColumnAssert |
ChangeColumnAssert.hasValues(byte[] expected)
Verifies that the values at the start point and the end point are equal to bytes.
|
ChangeColumnAssert |
ChangeColumnAssert.hasValues(byte[] expectedAtStartPoint,
byte[] expectedAtEndPoint)
Verifies that the values at the start point and the end point are equal to bytes for start point and other bytes for end point.
|
ChangeColumnAssert |
ChangeColumnAssert.hasValues(DateTimeValue expected)
Verifies that the values at the start point and the end point are equal to a date/time.
|
ChangeColumnAssert |
ChangeColumnAssert.hasValues(DateTimeValue expectedAtStartPoint,
DateTimeValue expectedAtEndPoint)
Verifies that the values at the start point and the end point are equal to a date/time for start point and another date/time for end point.
|
ChangeColumnAssert |
ChangeColumnAssert.hasValues(DateValue expected)
Verifies that the values at the start point and the end point are equal to a date.
|
ChangeColumnAssert |
ChangeColumnAssert.hasValues(DateValue expectedAtStartPoint,
DateValue expectedAtEndPoint)
Verifies that the values at the start point and the end point are equal to a date for start point and another date for end point.
|
ChangeColumnAssert |
ChangeColumnAssert.hasValues(Number expected)
Verifies that the values at the start point and the end point are equal to a number.
|
ChangeColumnAssert |
ChangeColumnAssert.hasValues(Number expectedAtStartPoint,
Number expectedAtEndPoint)
Verifies that the values at the start point and the end point are equal to a number for start point and another number for end point.
|
ChangeColumnAssert |
ChangeColumnAssert.hasValues(String expected)
Verifies that the values at the start point and the end point are equal to a text.
|
ChangeColumnAssert |
ChangeColumnAssert.hasValues(String expectedAtStartPoint,
String expectedAtEndPoint)
Verifies that the values at the start point and the end point are equal to a text for start point and another text for end point.
|
ChangeColumnAssert |
ChangeColumnAssert.hasValues(TimeValue expected)
Verifies that the values at the start point and the end point are equal to a time.
|
ChangeColumnAssert |
ChangeColumnAssert.hasValues(TimeValue expectedAtStartPoint,
TimeValue expectedAtEndPoint)
Verifies that the values at the start point and the end point are equal to a time for start point and another time for end point.
|
ChangeColumnAssert |
ChangeColumnAssert.isBoolean(boolean lenient)
Verifies that the type of the values of the column is boolean.
|
ChangeColumnAssert |
ChangeColumnAssert.isBytes(boolean lenient)
Verifies that the type of the values of the column is array of bytes.
|
ChangeColumnAssert |
ChangeColumnAssert.isDate(boolean lenient)
Verifies that the type of the values of the column is date.
|
ChangeColumnAssert |
ChangeColumnAssert.isDateTime(boolean lenient)
Verifies that the type of the values of the column is date/time.
|
ChangeColumnAssert |
ChangeColumnAssert.isModified()
Verifies that the column is modified between the start point and the end point.
|
ChangeColumnAssert |
ChangeColumnAssert.isNotModified()
Verifies that the column is not modified between the start point and the end point.
|
ChangeColumnAssert |
ChangeColumnAssert.isNumber(boolean lenient)
Verifies that the type of the values of the column is number.
|
ChangeColumnAssert |
ChangeColumnAssert.isOfAnyTypeIn(ValueType... expected)
Verifies that the type of the column is equal to one of the types in parameters.
|
ChangeColumnAssert |
ChangeColumnAssert.isOfType(ValueType expected,
boolean lenient)
Verifies that the type of the values of the column is equal to the type in parameter.
|
ChangeColumnAssert |
ChangeColumnAssert.isText(boolean lenient)
Verifies that the type of the values of the column is text.
|
ChangeColumnAssert |
ChangeColumnAssert.isTime(boolean lenient)
Verifies that the type of the values of the column is time.
|
ChangeColumnAssert |
ChangeColumnValueAssert.returnToColumn()
Returns to level of assertion methods on a
Column . |
Copyright © 2015 AssertJ. All Rights Reserved.