Files
BarangaySystem/tests/Unit/ExampleTest.php
2026-06-06 18:43:00 +08:00

23 lines
314 B
PHP

<?php
declare(strict_types=1);
namespace Tests\Unit;
use Hypervel\Foundation\Testing\TestCase;
/**
* @internal
* @coversNothing
*/
class ExampleTest extends TestCase
{
/**
* A basic test example.
*/
public function testThatTrueIsTrue(): void
{
$this->assertTrue(true);
}
}