@Override
@Transactional( rollbackOn = RuntimeTestException.class )
public void doTransactional()
throws TestException, RuntimeTestException
{
storeEntity( new TestEntity() );
doOtherTasks();
throw new RuntimeTestException( getClass().getSimpleName() );
}