unsa-pis-be/tests/Feature/ExampleTest.php
Christian Dacid Sullca Puma 1d272affe2 V1.0.0
2022-06-13 20:21:39 -05:00

22 lines
377 B
PHP

<?php
namespace Tests\Feature;
use Illuminate\Foundation\Testing\RefreshDatabase;
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function test_the_application_returns_a_successful_response()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}