Abstracts
This commit is contained in:
@ -1,17 +1,10 @@
|
||||
<?php
|
||||
namespace ProVM\Integration;
|
||||
|
||||
use PHPUnit\Framework\TestCase;
|
||||
use GuzzleHttp\Client;
|
||||
require __DIR__ . '/AbstractIntegration.php';
|
||||
|
||||
class HomeTest extends TestCase
|
||||
class HomeTest extends AbstractIntegration
|
||||
{
|
||||
protected Client $client;
|
||||
protected function setUp(): void
|
||||
{
|
||||
$this->client = new Client(['base_uri' => $_ENV['APP_URL']]);
|
||||
}
|
||||
|
||||
public function testLoad(): void
|
||||
{
|
||||
$response = $this->client->get('/');
|
||||
|
Reference in New Issue
Block a user