/
home
/
sjslayjy
/
public_html
/
theweavenest
/
vendor
/
stripe
/
stripe-php
/
tests
/
Stripe
/
Reporting
/
Upload File
HOME
<?php namespace Stripe\Reporting; /** * @internal * @covers \Stripe\Reporting\ReportType */ final class ReportTypeTest extends \Stripe\TestCase { use \Stripe\TestHelper; const TEST_RESOURCE_ID = 'activity.summary.1'; public function testIsListable() { $this->expectsRequest( 'get', '/v1/reporting/report_types' ); $resources = ReportType::all(); static::compatAssertIsArray($resources->data); static::assertInstanceOf(\Stripe\Reporting\ReportType::class, $resources->data[0]); } public function testIsRetrievable() { $this->expectsRequest( 'get', '/v1/reporting/report_types/' . self::TEST_RESOURCE_ID ); $resource = ReportType::retrieve(self::TEST_RESOURCE_ID); static::assertInstanceOf(\Stripe\Reporting\ReportType::class, $resource); } }