summaryrefslogtreecommitdiffstats
path: root/vendor/paypal/paypal-checkout-sdk/tests/Orders/OrdersCaptureTest.php
blob: 3e6f3649ac2a3a21616cc144fe0b925e27d42e86 (plain) (blame)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
25
26
<?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);
    }
}