Files
Speedtest-Tracker/tests/Feature/SettingsTest.php
Henry Whitaker 7640f22db8 Added unit tests
2020-07-24 11:46:08 +01:00

23 lines
392 B
PHP

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