first commit

This commit is contained in:
Anonymous
2019-10-22 23:39:48 +08:00
commit 4ddaf3eb5d
142 changed files with 19074 additions and 0 deletions

21
tests/Feature/ExampleTest.php Executable file
View File

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