riainvoice/vendor_old/omnipay/buckaroo/tests/PayPalGatewayTest.php
2021-10-01 23:56:38 +05:30

24 lines
557 B
PHP

<?php
namespace Omnipay\Buckaroo;
use Omnipay\Tests\GatewayTestCase;
class PayPalGatewayTest extends GatewayTestCase
{
public function setUp()
{
parent::setUp();
$this->gateway = new PayPalGateway($this->getHttpClient(), $this->getHttpRequest());
}
public function testPurchase()
{
$request = $this->gateway->purchase(array('amount' => '10.00'));
$this->assertInstanceOf('Omnipay\Buckaroo\Message\PayPalPurchaseRequest', $request);
$this->assertSame('10.00', $request->getAmount());
}
}