Subiendo proyecto completo sin restricciones de git ignore
This commit is contained in:
26
vendor/paypal/paypal-checkout-sdk/tests/Orders/OrdersAuthorizeTest.php
vendored
Normal file
26
vendor/paypal/paypal-checkout-sdk/tests/Orders/OrdersAuthorizeTest.php
vendored
Normal file
@@ -0,0 +1,26 @@
|
||||
<?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);
|
||||
}
|
||||
}
|
||||
Reference in New Issue
Block a user