initial commit

This commit is contained in:
Zakwan Hamdan
2020-10-19 10:28:31 +08:00
commit 5c7bbe3a19
47 changed files with 6819 additions and 0 deletions
+21
View File
@@ -0,0 +1,21 @@
<?php
use Laravel\Lumen\Testing\DatabaseMigrations;
use Laravel\Lumen\Testing\DatabaseTransactions;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testExample()
{
$this->get('/');
$this->assertEquals(
$this->app->version(), $this->response->getContent()
);
}
}