initial Commit

This commit is contained in:
chrosey
2017-05-31 18:52:16 +02:00
commit ebb2728c18
78 changed files with 6294 additions and 0 deletions
+23
View File
@@ -0,0 +1,23 @@
<?php
namespace Tests\Feature;
use Tests\TestCase;
use Illuminate\Foundation\Testing\WithoutMiddleware;
use Illuminate\Foundation\Testing\DatabaseMigrations;
use Illuminate\Foundation\Testing\DatabaseTransactions;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}