Added some tests

This commit is contained in:
Henry Whitaker
2020-04-14 00:05:29 +01:00
parent 50ed4ab894
commit 62eeeee9fe
4 changed files with 112 additions and 21 deletions

View File

@@ -0,0 +1,22 @@
<?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);
}
}