gateway = new PayeezyGateway($this->getHttpClient(), $this->getHttpRequest()); $this->gateway->setGatewayId('1234'); $this->gateway->setPassword('abcde'); $this->options = array( 'amount' => '13.00', 'card' => $this->getValidCard(), 'transactionId' => 'order2', 'currency' => 'USD', 'testMode' => true, ); } public function testProperties() { $this->assertEquals('1234', $this->gateway->getGatewayId()); $this->assertEquals('abcde', $this->gateway->getPassword()); } public function testPurchaseSuccess() { $this->setMockHttpResponse('PurchaseSuccess.txt'); $response = $this->gateway->purchase($this->options)->send(); $this->assertTrue($response->isSuccessful()); $this->assertFalse($response->isRedirect()); $this->assertEquals('ET181147::28513493', $response->getTransactionReference()); $this->assertEquals('000056', $response->getSequenceNo()); $this->assertEmpty($response->getCardReference()); } public function testAuthorizeSuccess() { $this->setMockHttpResponse('PurchaseSuccess.txt'); $response = $this->gateway->authorize($this->options)->send(); $this->assertTrue($response->isSuccessful()); $this->assertFalse($response->isRedirect()); $this->assertEquals('ET181147::28513493', $response->getTransactionReference()); } }