todo/tests/Feature/ExampleTest.php
Supan Adit Pratama 35d8715ab4 first commit
2020-06-23 11:40:37 +07:00

22 lines
340 B
PHP
Executable File

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