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