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(FixLevel0MediaPageTest::class)] 274b3ef6caSGreg Roachclass FixLevel0MediaPageTest extends TestCase 284b3ef6caSGreg Roach{ 29a26ec5edSGreg Roach protected static bool $uses_database = true; 30a26ec5edSGreg Roach 314b3ef6caSGreg Roach public function testFixLevel0Media(): void 324b3ef6caSGreg Roach { 334b3ef6caSGreg Roach $handler = new FixLevel0MediaPage(); 344b3ef6caSGreg Roach $request = self::createRequest(); 354b3ef6caSGreg Roach $response = $handler->handle($request); 364b3ef6caSGreg Roach 374b3ef6caSGreg Roach self::assertSame(StatusCodeInterface::STATUS_OK, $response->getStatusCode()); 384b3ef6caSGreg Roach } 394b3ef6caSGreg Roach} 40