Setup CI testing

This commit is contained in:
Deon George
2020-08-23 12:30:18 +10:00
parent f3282bed38
commit 1e3e4b2196
11 changed files with 1981 additions and 83 deletions

View File

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