| Package | Description |
|---|---|
| org.assertj.db.api.assertions.impl |
This package contains utility classes that implements the different assertions methods.
|
| org.assertj.db.type |
This package contains the classes that defines the different types used in assertj-db.
|
| org.assertj.db.type.lettercase |
This package contains the interfaces and utility classes about the letter case.
|
| Modifier and Type | Method and Description |
|---|---|
static <A extends AbstractAssert<?>> |
AssertionsOnColumnName.hasColumnName(A assertion,
org.assertj.core.api.WritableAssertionInfo info,
String columnName,
String expected,
LetterCase columnLetterCase)
Verifies that the name of a column is equal to the parameter.
|
static <A extends AbstractAssert<?>> |
AssertionsOnModifiedColumns.hasModifiedColumns(A assertion,
org.assertj.core.api.WritableAssertionInfo info,
Change change,
LetterCase columnLetterCase,
String... names)
Verifies that the names of columns with a modification in the values between the start point and the end point
is equals to the parameters.
|
static <A extends AbstractAssert<?>> |
AssertionsOnPrimaryKey.hasPksNames(A assertion,
org.assertj.core.api.WritableAssertionInfo info,
Change change,
LetterCase primaryKeyLetterCase,
String... names)
Verifies that the columns og the primary key of the rows of the change is the same as the parameters.
|
static <A extends AbstractAssert<?>> |
AssertionsOnDataType.isOnTable(A assertion,
org.assertj.core.api.WritableAssertionInfo info,
Change change,
LetterCase tableLetterCase,
String name)
Verifies that the change is on a table with the name in parameter.
|
| Modifier and Type | Method and Description |
|---|---|
LetterCase |
Value.getColumnLetterCase()
Returns the letter case of the columns.
|
LetterCase |
SourceWithLetterCase.getColumnLetterCase()
Returns the letter case of the columns.
|
LetterCase |
Row.getColumnLetterCase()
Returns the letter case of the columns.
|
LetterCase |
DataSourceWithLetterCase.getColumnLetterCase()
Returns the letter case of the columns.
|
LetterCase |
Column.getColumnLetterCase()
Returns the letter case of the columns.
|
LetterCase |
Change.getColumnLetterCase()
Returns the letter case of the columns.
|
LetterCase |
AbstractDbElement.getColumnLetterCase()
Returns the letter case of the columns.
|
LetterCase |
SourceWithLetterCase.getPrimaryKeyLetterCase()
Returns the letter case of the primary keys.
|
LetterCase |
Row.getPrimaryKeyLetterCase()
Returns the letter case of the primary keys.
|
LetterCase |
DataSourceWithLetterCase.getPrimaryKeyLetterCase()
Returns the letter case of the primary keys.
|
LetterCase |
Change.getPrimaryKeyLetterCase()
Returns the letter case of the primary keys.
|
LetterCase |
AbstractDbElement.getPrimaryKeyLetterCase()
Returns the letter case of the primary keys.
|
LetterCase |
SourceWithLetterCase.getTableLetterCase()
Returns the letter case of the tables.
|
LetterCase |
DataSourceWithLetterCase.getTableLetterCase()
Returns the letter case of the tables.
|
LetterCase |
Change.getTableLetterCase()
Returns the letter case of the tables.
|
LetterCase |
AbstractDbElement.getTableLetterCase()
Returns the letter case of the tables.
|
| Modifier and Type | Method and Description |
|---|---|
static Value |
Value.getNullValue(String columnName,
LetterCase columnLetterCase)
Returns a NULL value.
|
| Constructor and Description |
|---|
DataSourceWithLetterCase(DataSource dataSource,
LetterCase tableLetterCase,
LetterCase columnLetterCase,
LetterCase primaryKeyLetterCase)
Constructor.
|
SourceWithLetterCase(String url,
String user,
String password,
LetterCase tableLetterCase,
LetterCase columnLetterCase,
LetterCase primaryKeyLetterCase)
Constructor with the informations.
|
| Modifier and Type | Field and Description |
|---|---|
static LetterCase |
LetterCase.COLUMN_DEFAULT
The default letter case for table.
|
static LetterCase |
LetterCase.PRIMARY_KEY_DEFAULT
The default letter case for table.
|
static LetterCase |
LetterCase.TABLE_DEFAULT
The default letter case for table.
|
| Modifier and Type | Method and Description |
|---|---|
LetterCase |
WithColumnLetterCase.getColumnLetterCase()
Returns the letter case of the columns.
|
static LetterCase |
LetterCase.getLetterCase(CaseConversion conversion,
CaseComparison comparison)
Returns a instance of a letter case.
|
LetterCase |
WithPrimaryKeyLetterCase.getPrimaryKeyLetterCase()
Returns the letter case of the primary keys.
|
LetterCase |
WithTableLetterCase.getTableLetterCase()
Returns the letter case of the tables.
|
Copyright © 2015–2017 AssertJ. All rights reserved.