Files
Speedtest-Tracker/tests/Feature/BackupTest.php
Henry Whitaker 62eeeee9fe Added some tests
2020-04-14 00:05:29 +01:00

23 lines
390 B
PHP

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