暂无描述
您最多选择25个主题 主题必须以字母或数字开头,可以包含连字符 (-),并且长度不得超过35个字符

ExampleTest.php 243B

12345678910111213141516
  1. <?php
  2. namespace Tests\Unit;
  3. use PHPUnit\Framework\TestCase;
  4. class ExampleTest extends TestCase
  5. {
  6. /**
  7. * A basic test example.
  8. */
  9. public function test_that_true_is_true(): void
  10. {
  11. $this->assertTrue(true);
  12. }
  13. }