/**
  * tests the failing of Paymentprocess
  *
  */
 public function testProcessPaymentWithWrongCurrency()
 {
     $this->_paymentProcessor->setCurrency('EURonen');
     $this->assertFalse($this->ProcessPayment());
     $this->assertEquals('Exception thrown from paymill wrapper.', $this->_actualLoggingMessage);
 }