public enum DatabaseAssertionMode extends Enum<DatabaseAssertionMode>
ExpectedDatabase
behavior.Enum Constant and Description |
---|
DEFAULT
Will use default DbUnit data sets assertions.
|
NON_STRICT
Allows specifying only specific columns and tables in expected data set.
|
NON_STRICT_UNORDERED
Allows specifying only specific columns and tables in expected data set and ignoring row orders in expected and
actual data set.
|
Modifier and Type | Method and Description |
---|---|
DatabaseAssertion |
getDatabaseAssertion() |
static DatabaseAssertionMode |
valueOf(String name)
Returns the enum constant of this type with the specified name.
|
static DatabaseAssertionMode[] |
values()
Returns an array containing the constants of this enum type, in
the order they are declared.
|
public static final DatabaseAssertionMode DEFAULT
public static final DatabaseAssertionMode NON_STRICT
Notes:
public static final DatabaseAssertionMode NON_STRICT_UNORDERED
Notes:
public static DatabaseAssertionMode[] values()
for (DatabaseAssertionMode c : DatabaseAssertionMode.values()) System.out.println(c);
public static DatabaseAssertionMode valueOf(String name)
name
- the name of the enum constant to be returned.IllegalArgumentException
- if this enum type has no constant with the specified nameNullPointerException
- if the argument is nullpublic DatabaseAssertion getDatabaseAssertion()
Copyright © 2016. All rights reserved.