public function testAuthorizeSuccessNoTransactionId()
 {
     $result = new \stdClass();
     $result->State = 1;
     $result->Status = 1;
     $result->Message = 'Approved BankAuth: 826914443 CvvResult: M CVVCodeReason: CVV2 Match';
     $result->Technical = '';
     $result->TransactionID = 'f0e5b9f4-ec28-4ff2-aaed-195ec71aefcc';
     $wrapper = new \stdClass();
     $wrapper->PreauthorizeCreditCardResult = $result;
     $this->mockSoapClient->expects($this->any())->method('PreauthorizeCreditCard')->will($this->returnValue($wrapper));
     $this->options = array('siteId' => '123', 'amount' => '10.00', 'currency' => 'AUD', 'clientIp' => '123.123.123.123', 'card' => $this->getValidCard());
     $response = $this->gateway->authorize($this->options)->send();
     $this->assertTrue($response->isSuccessful());
     $this->assertFalse($response->isRedirect());
     $this->assertEquals('f0e5b9f4-ec28-4ff2-aaed-195ec71aefcc', $response->getTransactionReference());
     $this->assertSame('Approved BankAuth: 826914443 CvvResult: M CVVCodeReason: CVV2 Match', $response->getMessage());
 }