ExampleTest.php 314 B

12345678910111213141516171819202122
  1. <?php
  2. declare(strict_types=1);
  3. namespace Tests\Unit;
  4. use Hypervel\Foundation\Testing\TestCase;
  5. /**
  6. * @internal
  7. * @coversNothing
  8. */
  9. class ExampleTest extends TestCase
  10. {
  11. /**
  12. * A basic test example.
  13. */
  14. public function testThatTrueIsTrue(): void
  15. {
  16. $this->assertTrue(true);
  17. }
  18. }