2025-12-25 06:33:21 +01:00
|
|
|
<?php
|
|
|
|
|
|
2026-01-20 20:58:32 +01:00
|
|
|
declare(strict_types=1);
|
|
|
|
|
|
2025-12-25 06:33:21 +01:00
|
|
|
namespace Tests\Unit;
|
|
|
|
|
|
|
|
|
|
use PHPUnit\Framework\TestCase;
|
|
|
|
|
|
2026-01-20 20:58:32 +01:00
|
|
|
final class ExampleTest extends TestCase
|
2025-12-25 06:33:21 +01:00
|
|
|
{
|
|
|
|
|
/**
|
|
|
|
|
* A basic test example.
|
|
|
|
|
*/
|
|
|
|
|
public function test_that_true_is_true(): void
|
|
|
|
|
{
|
|
|
|
|
$this->assertTrue(true);
|
|
|
|
|
}
|
|
|
|
|
}
|