forge/tests/Unit/ExampleTest.php

8 lines
113 B
PHP
Raw Permalink Normal View History

2024-05-13 18:55:34 -04:00
<?php
2025-01-30 00:23:55 -05:00
declare(strict_types=1);
test('that true is true', function (): void {
2024-07-18 00:11:32 -04:00
expect(true)->toBe(true);
});