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