/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
stripe
/
stripe-php
/
tests
/
Stripe
/
Service
/
Radar
/
Upload File
HOME
<?php namespace Stripe\Service\Radar; /** * @internal * @covers \Stripe\Service\Radar\EarlyFraudWarningService */ final class EarlyFraudWarningServiceTest extends \Stripe\TestCase { use \Stripe\TestHelper; const TEST_RESOURCE_ID = 'issfr_123'; /** @var \Stripe\StripeClient */ private $client; /** @var EarlyFraudWarningService */ private $service; /** * @before */ protected function setUpService() { $this->client = new \Stripe\StripeClient(['api_key' => 'sk_test_123', 'api_base' => MOCK_URL]); $this->service = new EarlyFraudWarningService($this->client); } public function testAll() { $this->expectsRequest( 'get', '/v1/radar/early_fraud_warnings' ); $resources = $this->service->all(); static::compatAssertIsArray($resources->data); static::assertInstanceOf(\Stripe\Radar\EarlyFraudWarning::class, $resources->data[0]); } public function testRetrieve() { $this->expectsRequest( 'get', '/v1/radar/early_fraud_warnings/' . self::TEST_RESOURCE_ID ); $resource = $this->service->retrieve(self::TEST_RESOURCE_ID); static::assertInstanceOf(\Stripe\Radar\EarlyFraudWarning::class, $resource); } }