ruạṛ
<?php // // WARNING: Do not edit by hand, this file was generated by Crank: // https://github.com/gocardless/crank // namespace GoCardlessPro\Integration; use PHPUnit\Framework\TestCase; use GoCardlessPro\Environment; use GoCardlessPro\Support\TestFixtures; abstract class IntegrationTestBase extends TestCase { use TestFixtures; public function setUp() { $this->mock = new \GuzzleHttp\Handler\MockHandler([]); $this->history = array(); $historyMiddleware = \GuzzleHttp\Middleware::history($this->history); $handler = \GuzzleHttp\HandlerStack::create($this->mock); $handler->push($historyMiddleware); $this->mock_http_client = new \GuzzleHttp\Client( [ 'handler' => $handler, 'http_errors' => false ] ); $this->client = new \GoCardlessPro\Client( array( 'access_token' => 'foobar', 'environment' => Environment::LIVE, 'http_client' => $this->mock_http_client ) ); } public function tearDown() { } public function stub_request($resource_fixture) { $path = preg_replace("/:(\w+)/", "\w+", $resource_fixture->path_template); $path_regexp = "|" . str_replace("\\\\w\+", "\w+", preg_quote($path)) . "|"; $json_body = json_encode($resource_fixture->body); $response = new \GuzzleHttp\Psr7\Response(200, [], $json_body); $this->mock->append($response); } public function extract_resource_fixture_path_regex($resource_fixture) { $path = preg_replace("/:(\w+)/", "\w+", $resource_fixture->path_template); return "|" . str_replace("\\\\w\+", "\w+", preg_quote($path)) . "|"; } }
cải xoăn