/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
stripe
/
stripe-php
/
tests
/
Stripe
/
Service
/
Upload File
HOME
<?php namespace Stripe\Service; /** * @internal * @covers \Stripe\Service\SetupAttemptService */ final class SetupAttemptServiceTest extends \Stripe\TestCase { use \Stripe\TestHelper; /** @var \Stripe\StripeClient */ private $client; /** @var SetupAttemptService */ private $service; /** * @before */ protected function setUpService() { $this->client = new \Stripe\StripeClient(['api_key' => 'sk_test_123', 'api_base' => MOCK_URL]); $this->service = new SetupAttemptService($this->client); } public function testAll() { $this->expectsRequest( 'get', '/v1/setup_attempts' ); $resources = $this->service->all([ 'setup_intent' => 'si_123', ]); static::compatAssertIsArray($resources->data); static::assertInstanceOf(\Stripe\SetupAttempt::class, $resources->data[0]); } }