hypothetical/tests/Feature/ExampleTest.php

20 lines
359 B
PHP
Raw Normal View History

<?php
2017-01-26 19:17:37 -05:00
namespace Tests\Feature;
2022-10-11 18:14:02 -04:00
// use Illuminate\Foundation\Testing\RefreshDatabase;
2019-10-31 17:24:53 -04:00
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
2017-01-26 19:17:37 -05:00
* A basic test example.
*/
2023-03-13 17:33:19 -04:00
public function test_the_application_returns_a_successful_response(): void
{
2017-01-26 19:17:37 -05:00
$response = $this->get('/');
$response->assertStatus(200);
}
}