xref: /webtrees/tests/app/Http/RequestHandlers/UpgradeWizardConfirmTest.php (revision 5a8afed46297e8105e3e5a33ce37e6a8e88bc79d)
14b3ef6caSGreg Roach<?php
24b3ef6caSGreg Roach
34b3ef6caSGreg Roach/**
44b3ef6caSGreg Roach * webtrees: online genealogy
5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
64b3ef6caSGreg Roach * This program is free software: you can redistribute it and/or modify
74b3ef6caSGreg Roach * it under the terms of the GNU General Public License as published by
84b3ef6caSGreg Roach * the Free Software Foundation, either version 3 of the License, or
94b3ef6caSGreg Roach * (at your option) any later version.
104b3ef6caSGreg Roach * This program is distributed in the hope that it will be useful,
114b3ef6caSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
124b3ef6caSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
134b3ef6caSGreg Roach * GNU General Public License for more details.
144b3ef6caSGreg Roach * You should have received a copy of the GNU General Public License
154b3ef6caSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
164b3ef6caSGreg Roach */
174b3ef6caSGreg Roach
184b3ef6caSGreg Roachdeclare(strict_types=1);
194b3ef6caSGreg Roach
204b3ef6caSGreg Roachnamespace Fisharebest\Webtrees\Http\RequestHandlers;
214b3ef6caSGreg Roach
224b3ef6caSGreg Roachuse Fig\Http\Message\StatusCodeInterface;
234b3ef6caSGreg Roachuse Fisharebest\Webtrees\TestCase;
24*202c018bSGreg Roachuse PHPUnit\Framework\Attributes\CoversClass;
254b3ef6caSGreg Roach
26*202c018bSGreg Roach#[CoversClass(UpgradeWizardConfirm::class)]
274b3ef6caSGreg Roachclass UpgradeWizardConfirmTest extends TestCase
284b3ef6caSGreg Roach{
294b3ef6caSGreg Roach    public function testWizardContinue(): void
304b3ef6caSGreg Roach    {
314b3ef6caSGreg Roach        $handler  = new UpgradeWizardConfirm();
324b3ef6caSGreg Roach        $request  = self::createRequest();
334b3ef6caSGreg Roach        $response = $handler->handle($request);
344b3ef6caSGreg Roach
354b3ef6caSGreg Roach        self::assertSame(StatusCodeInterface::STATUS_FOUND, $response->getStatusCode());
364b3ef6caSGreg Roach    }
374b3ef6caSGreg Roach}
38