21 lines
294 B
PHP
21 lines
294 B
PHP
<?php
|
|
|
|
declare(strict_types=1);
|
|
|
|
namespace Tests\Feature;
|
|
|
|
use Tests\TestCase;
|
|
|
|
/**
|
|
* @internal
|
|
* @coversNothing
|
|
*/
|
|
class ExampleTest extends TestCase
|
|
{
|
|
public function testTheApplicationReturnsSuccessfulResponse()
|
|
{
|
|
$this->get('/')
|
|
->assertSuccessful();
|
|
}
|
|
}
|