. */ declare(strict_types=1); namespace Fisharebest\Webtrees; use PHPUnit\Framework\Attributes\CoversClass; #[CoversClass(Date::class)] class DateTest extends TestCase { /** * Test that the class exists */ public function testClassExists(): void { self::assertTrue(class_exists(Date::class)); } }