unit test

This commit is contained in:
glovetleong
2022-07-30 09:40:50 +08:00
parent 4329f77e95
commit 2a6a980fc3
4 changed files with 71 additions and 0 deletions
+20
View File
@@ -0,0 +1,20 @@
<?php
namespace Tests\Feature;
use Tests\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$response = $this->get('/');
$response->assertStatus(200);
}
}