ruạṛ
<?php // // WARNING: Do not edit by hand, this file was generated by Crank: // https://github.com/gocardless/crank // namespace GoCardlessPro\Integration; class PayoutItemsIntegrationTest extends IntegrationTestBase { public function testResourceModelExists() { $obj = new \GoCardlessPro\Resources\PayoutItem(array()); $this->assertNotNull($obj); } public function testPayoutItemsList() { $fixture = $this->loadJsonFixture('payout_items')->list; $this->stub_request($fixture); $service = $this->client->payoutItems(); $response = call_user_func_array(array($service, 'list'), (array)$fixture->url_params); $body = $fixture->body->payout_items; $records = $response->records; $this->assertInstanceOf('\GoCardlessPro\Core\ListResponse', $response); $this->assertInstanceOf('\GoCardlessPro\Resources\PayoutItem', $records[0]); $this->assertEquals($fixture->body->meta->cursors->before, $response->before); $this->assertEquals($fixture->body->meta->cursors->after, $response->after); foreach (range(0, count($body) - 1) as $num) { $record = $records[$num]; $this->assertEquals($body[$num]->amount, $record->amount); $this->assertEquals($body[$num]->links, $record->links); $this->assertEquals($body[$num]->taxes, $record->taxes); $this->assertEquals($body[$num]->type, $record->type); } $expectedPathRegex = $this->extract_resource_fixture_path_regex($fixture); $dispatchedRequest = $this->history[0]['request']; $this->assertRegExp($expectedPathRegex, $dispatchedRequest->getUri()->getPath()); } }
cải xoăn