%PDF- %PDF-
Mini Shell

Mini Shell

Direktori : /home/eirtvhdf/logodowntown.com/logo-offer/root_stripe/stripe/tests/Stripe/
Upload File :
Create Path :
Current File : /home/eirtvhdf/logodowntown.com/logo-offer/root_stripe/stripe/tests/Stripe/FileTest.php

<?php

namespace Stripe;

class FileTest extends TestCase
{
    const TEST_RESOURCE_ID = 'file_123';

    public function testIsListable()
    {
        $this->expectsRequest(
            'get',
            '/v1/files'
        );
        $resources = File::all();
        $this->assertTrue(is_array($resources->data));
        $this->assertInstanceOf("Stripe\\File", $resources->data[0]);
    }

    public function testIsRetrievable()
    {
        $this->expectsRequest(
            'get',
            '/v1/files/' . self::TEST_RESOURCE_ID
        );
        $resource = File::retrieve(self::TEST_RESOURCE_ID);
        $this->assertInstanceOf("Stripe\\File", $resource);
    }

    public function testDeserializesFromFile()
    {
        $obj = Util\Util::convertToStripeObject([
            'object' => 'file',
        ], null);
        $this->assertInstanceOf("Stripe\\File", $obj);
    }

    public function testDeserializesFromFileUpload()
    {
        $obj = Util\Util::convertToStripeObject([
            'object' => 'file_upload',
        ], null);
        $this->assertInstanceOf("Stripe\\File", $obj);
    }
}

Zerion Mini Shell 1.0