This repository has been archived on 2021-02-17. You can view files and clone it, but cannot push or open issues or pull requests.
questcequonmange/tests/Feature/ExampleTest.php
2019-05-13 00:35:06 +02:00

22 lines
340 B
PHP

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