xref: /webtrees/tests/app/Elements/DateValueTodayTest.php (revision 202c018b592d5a516e4a465dc6dc515f3be37399)
1a8139624SGreg Roach<?php
2a8139624SGreg Roach
3a8139624SGreg Roach/**
4a8139624SGreg Roach * webtrees: online genealogy
5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
6a8139624SGreg Roach * This program is free software: you can redistribute it and/or modify
7a8139624SGreg Roach * it under the terms of the GNU General Public License as published by
8a8139624SGreg Roach * the Free Software Foundation, either version 3 of the License, or
9a8139624SGreg Roach * (at your option) any later version.
10a8139624SGreg Roach * This program is distributed in the hope that it will be useful,
11a8139624SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12a8139624SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13a8139624SGreg Roach * GNU General Public License for more details.
14a8139624SGreg Roach * You should have received a copy of the GNU General Public License
15a8139624SGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
16a8139624SGreg Roach */
17a8139624SGreg Roach
18a8139624SGreg Roachdeclare(strict_types=1);
19a8139624SGreg Roach
20a8139624SGreg Roachnamespace Fisharebest\Webtrees\Elements;
21a8139624SGreg Roach
22a8139624SGreg Roachuse Fisharebest\Webtrees\TestCase;
23*202c018bSGreg Roachuse PHPUnit\Framework\Attributes\CoversClass;
24a8139624SGreg Roach
25*202c018bSGreg Roach
26*202c018bSGreg Roach#[CoversClass(DateValueToday::class)]
27a8139624SGreg Roachclass DateValueTodayTest extends TestCase
28a8139624SGreg Roach{
29a8139624SGreg Roach    public function testClass(): void
30a8139624SGreg Roach    {
31*202c018bSGreg Roach        $this->assertTrue(class_exists(DateValueToday::class));
32a8139624SGreg Roach    }
33a8139624SGreg Roach}
34