27 lines
641 B
PHP
27 lines
641 B
PHP
<?php
|
|
|
|
|
|
|
|
namespace Test\Orders;
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
use PayPalCheckoutSdk\Orders\OrdersAuthorizeRequest;
|
|
use Test\TestHarness;
|
|
|
|
|
|
class OrdersAuthorizeTest extends TestCase
|
|
{
|
|
public function testOrdersAuthorizeRequest()
|
|
{
|
|
$this->markTestSkipped("Need an approved Order ID to execute this test.");
|
|
$request = new OrdersAuthorizeRequest('ORDER-ID');
|
|
$request->body = $this->buildRequestBody();
|
|
|
|
$client = TestHarness::client();
|
|
$response = $client->execute($request);
|
|
$this->assertEquals(201, $response->statusCode);
|
|
$this->assertNotNull($response->result);
|
|
}
|
|
}
|