/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
stripe
/
stripe-php
/
tests
/
Stripe
/
Upload File
HOME
<?php namespace Stripe; /** * @internal * @covers \Stripe\ApplicationFeeRefund */ final class ApplicationFeeRefundTest extends \Stripe\TestCase { use TestHelper; const TEST_RESOURCE_ID = 'fr_123'; const TEST_FEE_ID = 'fee_123'; public function testIsSaveable() { $resource = ApplicationFee::retrieveRefund(self::TEST_FEE_ID, self::TEST_RESOURCE_ID); $resource->metadata['key'] = 'value'; $this->expectsRequest( 'post', '/v1/application_fees/' . $resource->fee . '/refunds/' . $resource->id ); $resource->save(); static::assertInstanceOf(\Stripe\ApplicationFeeRefund::class, $resource); } }