| 12345678910111213141516171819202122 |
- <?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);
- }
- }
|