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
+19
View File
@@ -0,0 +1,19 @@
<?php
namespace Tests\Unit;
use PHPUnit\Framework\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*
* @return void
*/
public function testBasicTest()
{
$this->assertTrue(true);
}
}