Files
Speedtest-Tracker/conf/site/tests/Feature/BackupTest.php
Henry Whitaker 229bb30cf5 Updated to v1.2.6
2020-04-21 23:41:44 +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);
}
}