@Documented @Inherited @Retention(value=RUNTIME) @Target(value=TYPE) public @interface DbUnitConfiguration
DbUnitTestExecutionListener
.DbUnitTestExecutionListener
Modifier and Type | Optional Element and Description |
---|---|
String[] |
databaseConnection
Returns the names of the spring beans which will be used to access
IDatabaseConnections . |
Class<? extends DatabaseOperationLookup> |
databaseOperationLookup
Returns the class that will be used to lookup DBUnit databse operations.
|
Class<? extends DataSetLoader> |
dataSetLoader
Returns the class that will be used to load
IDataSet resources. |
String |
dataSetLoaderBean
Returns the name of the bean that will be used to load
IDataSet resources. |
public abstract String[] databaseConnection
IDatabaseConnections
. The referenced beans can either be a instance of IDatabaseConnection
or a
DataSource
.public abstract Class<? extends DataSetLoader> dataSetLoader
IDataSet
resources. The specified class must implement
DataSetLoader
and must have a default constructor.public abstract String dataSetLoaderBean
IDataSet
resources. The specified bean must
implement DataSetLoader
.public abstract Class<? extends DatabaseOperationLookup> databaseOperationLookup
DatabaseOperationLookup
and must have a default constructor.Copyright © 2016. All rights reserved.