Git inicializacia

This commit is contained in:
Jaroslav Drzik
2019-11-15 11:03:55 +01:00
commit e2f7d8b5c6
93 changed files with 8193 additions and 0 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('/');
$response->assertStatus(200);
}
}