You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
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.