1. Go to this page and download the library: Download chillerlan/phpunit-http library. Choose the download type require.
2. Extract the ZIP file and open the index.php.
3. Add this code to the index.php.
<?php
require_once('vendor/autoload.php');
/* Start to develop here. Best regards https://php-download.com/ */
chillerlan / phpunit-http example snippets
class MyUnitTest extends \PHPUnit\Framework\TestCase{
// include the factory trait
use \chillerlan\PHPUnitHttp\HttpFactoryTrait;
// you can define the factories either as properties in your test class or in phpunit.xml
protected string $REQUEST_FACTORY = MyRequestFactory::class;
protected string $RESPONSE_FACTORY = MyResponseFactory::class;
protected string $STREAM_FACTORY = MyStreamFactory::class;
protected string $URI_FACTORY = MyUriFactory::class;
// these three factories may not always be needed and/or implemented,
// you can just unset or simply omit the properties
protected string $HTTP_CLIENT_FACTORY = \chillerlan\PHPUnitHttp\GuzzleHttpClientFactory::class;
protected string $SERVER_REQUEST_FACTORY;
protected string $UPLOADED_FILE_FACTORY;
// a CA bundle is
final class MyHttpClientFactory implements HttpClientFactoryInterface{
public function getClient(string $cacert, ResponseFactoryInterface $responseFactory):ClientInterface{
return new MyHttpClient(['cacert' => $cacert, /* ... */]);
}
}
Loading please wait ...
Before you can download the PHP files, the dependencies should be resolved. This can take some minutes. Please be patient.