/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
stripe
/
stripe-php
/
tests
/
Stripe
/
Upload File
HOME
<?php namespace Stripe; /** * @internal * @covers \Stripe\ApplicationFee */ final class ApplicationFeeTest extends \Stripe\TestCase { use TestHelper; const TEST_RESOURCE_ID = 'fee_123'; const TEST_FEEREFUND_ID = 'fr_123'; public function testIsListable() { $this->expectsRequest( 'get', '/v1/application_fees' ); $resources = ApplicationFee::all(); static::compatAssertIsArray($resources->data); static::assertInstanceOf(\Stripe\ApplicationFee::class, $resources->data[0]); } public function testIsRetrievable() { $this->expectsRequest( 'get', '/v1/application_fees/' . self::TEST_RESOURCE_ID ); $resource = ApplicationFee::retrieve(self::TEST_RESOURCE_ID); static::assertInstanceOf(\Stripe\ApplicationFee::class, $resource); } public function testCanCreateRefund() { $this->expectsRequest( 'post', '/v1/application_fees/' . self::TEST_RESOURCE_ID . '/refunds' ); $resource = ApplicationFee::createRefund(self::TEST_RESOURCE_ID); static::assertInstanceOf(\Stripe\ApplicationFeeRefund::class, $resource); } public function testCanRetrieveRefund() { $this->expectsRequest( 'get', '/v1/application_fees/' . self::TEST_RESOURCE_ID . '/refunds/' . self::TEST_FEEREFUND_ID ); $resource = ApplicationFee::retrieveRefund(self::TEST_RESOURCE_ID, self::TEST_FEEREFUND_ID); static::assertInstanceOf(\Stripe\ApplicationFeeRefund::class, $resource); } public function testCanUpdateRefund() { $this->expectsRequest( 'post', '/v1/application_fees/' . self::TEST_RESOURCE_ID . '/refunds/' . self::TEST_FEEREFUND_ID ); $resource = ApplicationFee::updateRefund(self::TEST_RESOURCE_ID, self::TEST_FEEREFUND_ID); static::assertInstanceOf(\Stripe\ApplicationFeeRefund::class, $resource); } public function testCanListRefunds() { $this->expectsRequest( 'get', '/v1/application_fees/' . self::TEST_RESOURCE_ID . '/refunds' ); $resources = ApplicationFee::allRefunds(self::TEST_RESOURCE_ID); static::compatAssertIsArray($resources->data); static::assertInstanceOf(\Stripe\ApplicationFeeRefund::class, $resources->data[0]); } }