Files
oficial/app/tests/extension/AbstractIntegration.php
2025-05-08 11:13:23 -04:00

16 lines
341 B
PHP

<?php
namespace Tests\Extension;
use GuzzleHttp\Client;
use PHPUnit\Framework\TestCase;
use Psr\Http\Client\ClientInterface;
abstract class AbstractIntegration extends TestCase
{
protected ClientInterface $client;
protected function setUp(): void
{
$this->client = new Client(['base_uri' => $_ENV['APP_URL']]);
}
}