feat: 유닛테스트 준비

This commit is contained in:
2022-03-03 00:16:01 +09:00
parent a289b192e4
commit c68a428bf5
5 changed files with 24 additions and 4 deletions
+6
View File
@@ -0,0 +1,6 @@
<?php
class BasicTest extends PHPUnit\Framework\TestCase{
public function testHelloWorld(){
$this->assertEquals(1+1, 2);
}
}