github-pachong/tests/Unit/ExampleTest.php
hellcat c69d35d1bb 1
2026-01-10 16:40:33 +08:00

17 lines
243 B
PHP
Executable File

<?php
namespace Tests\Unit;
use PHPUnit\Framework\TestCase;
class ExampleTest extends TestCase
{
/**
* A basic test example.
*/
public function test_that_true_is_true(): void
{
$this->assertTrue(true);
}
}