Package de.hybris.platform.testframework
Annotation Interface Transactional
Marks a test method or class as transactional. If
TransactionRunListener is activated, the test will be runed
within a scope of a transaction and in default rollbacked at end.- Since:
- 3.0-u3
- See Also:
-
Optional Element Summary
Optional ElementsModifier and TypeOptional ElementDescriptionbooleanThe "delayed store" feature enables you to delay all item modifications until the end of the transaction.booleanIf set, no rollback will be done at the end of the test.
-
Element Details
-
enableDelayedStore
boolean enableDelayedStoreThe "delayed store" feature enables you to delay all item modifications until the end of the transaction.- Returns:
- will the delayed store be enabled?
- Default:
- false
-
noRollback
boolean noRollbackIf set, no rollback will be done at the end of the test. Instead a commit will be performed.- Returns:
- will a commit be performed at end of test?
- Default:
- false
-