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