14a213054SGreg Roach<?php 24a213054SGreg Roach 34a213054SGreg Roach/** 44a213054SGreg Roach * webtrees: online genealogy 5*d11be702SGreg Roach * Copyright (C) 2023 webtrees development team 64a213054SGreg Roach * This program is free software: you can redistribute it and/or modify 74a213054SGreg Roach * it under the terms of the GNU General Public License as published by 84a213054SGreg Roach * the Free Software Foundation, either version 3 of the License, or 94a213054SGreg Roach * (at your option) any later version. 104a213054SGreg Roach * This program is distributed in the hope that it will be useful, 114a213054SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of 124a213054SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the 134a213054SGreg Roach * GNU General Public License for more details. 144a213054SGreg Roach * You should have received a copy of the GNU General Public License 154a213054SGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>. 164a213054SGreg Roach */ 174a213054SGreg Roach 184a213054SGreg Roachdeclare(strict_types=1); 194a213054SGreg Roach 204a213054SGreg Roachnamespace Fisharebest\Webtrees; 214a213054SGreg Roach 224a213054SGreg Roachclass VerifySuccessPageTest extends AbstractViewTest 234a213054SGreg Roach{ 244a213054SGreg Roach /** 254a213054SGreg Roach * Standard tests for all elements. 264a213054SGreg Roach */ 274a213054SGreg Roach public function testView(): void 284a213054SGreg Roach { 294a213054SGreg Roach $this->doTestView('verify-success-page', [ 304a213054SGreg Roach 'title' => ['title'] 314a213054SGreg Roach ]); 324a213054SGreg Roach } 334a213054SGreg Roach} 34