diaREact/tests/Feature/ExampleTest.php

22 lines
339 B
PHP
Raw Permalink Normal View History

2022-02-11 17:26:15 +01:00
<?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_example()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}