Issue Overview
In arquillian.xml, I have the default transaction mode set to DISABLED. In a test class, I put @Transactional(TransactionMode.COMMIT) at the class level. I put @ShouldMatchDataSet on one method within that class, without defining @Transactional at the method level.
Expected Behaviour
The method should inherit the class level setting.
Current Behaviour
The method inherts the default setting from arquillian.xml.
Additional Information
The method correctly inherits the class level setting if @ShouldMatchDataSet is removed. Specifying @Transactional(TransactionMode.COMMIT) on the method level works correctly.
Issue Overview
In arquillian.xml, I have the default transaction mode set to DISABLED. In a test class, I put
@Transactional(TransactionMode.COMMIT)at the class level. I put@ShouldMatchDataSeton one method within that class, without defining@Transactionalat the method level.Expected Behaviour
The method should inherit the class level setting.
Current Behaviour
The method inherts the default setting from arquillian.xml.
Additional Information
The method correctly inherits the class level setting if
@ShouldMatchDataSetis removed. Specifying@Transactional(TransactionMode.COMMIT)on the method level works correctly.