block-explorer/tests/Unit/ExampleTest.php
Ben van Hartingsveldt a39dacc347
Install Laravel 11
2025-05-01 11:13:30 +02:00

16 lines
243 B
PHP

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