File manager - Edit - /home/opticamezl/www/newok/libraries/fabrik/vendor/omnipay/multisafepay/tests/Message/RestFetchIssuersRequestTest.php
Back
<?php namespace Omnipay\MultiSafepay\Message; use Omnipay\Tests\TestCase; class RestFetchIssuersRequestTest extends TestCase { /** * @var FetchIssuersRequest */ private $request; protected function setUp() { $this->request = new RestFetchIssuersRequest( $this->getHttpClient(), $this->getHttpRequest() ); $this->request->initialize( array( 'api_key' => '123456789', 'paymentMethod' => 'IDEAL' ) ); } public function testSendSuccess() { $this->setMockHttpResponse('RestFetchIssuersSuccess.txt'); $response = $this->request->send(); $issuers = $response->getIssuers(); $this->assertContainsOnlyInstancesOf('Omnipay\Common\Issuer', $issuers); $this->assertFalse($response->isRedirect()); $this->assertInstanceOf('Omnipay\MultiSafepay\Message\RestFetchIssuersResponse', $response); $this->assertInternalType('array', $issuers); $this->assertNull($response->getTransactionReference()); $this->assertTrue($response->isSuccessful()); } public function testIssuerNotFound() { $this->setMockHttpResponse('RestFetchIssuersFailure.txt'); $response = $this->request->send(); $this->assertEquals('Not found', $response->getMessage()); $this->assertEquals(404, $response->getCode()); $this->assertFalse($response->isRedirect()); $this->assertFalse($response->isSuccessful()); $this->assertInstanceOf('Omnipay\MultiSafepay\Message\RestFetchIssuersResponse', $response); } }
| ver. 1.4 |
Github
|
.
| PHP 8.3.23 | Generation time: 0.01 |
proxy
|
phpinfo
|
Settings