Random random = new Random();
String EntranceCode = Long.toString(Math.abs(random.nextLong()), 36);
transaction.setEntranceCode(EntranceCode);
transaction.setMerchantReturnURL(merchantReturnURL);
IdealException ex = new IdealException("");
ex.setErrorCode("SO1000");
Transaction transactionCustomer = connector.requestTransaction(transaction);
Debug.logInfo("[testOrderError] IssuerID Messages from iDEAL: " + transactionCustomer.getIssuerID(), module);
Debug.logInfo("[testOrderError] Status Messages from iDEAL: " + transactionCustomer.getStatus(), module);
} catch (IdealException ex){
TestCase.fail(ex.getMessage());
}
}