Files
oficial/app/tests/integration/AbstractIntegration.php
Juan Pablo Vial f8ac0f14f0 Abstracts
2025-04-29 22:25:32 -04:00

15 lines
342 B
PHP

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