xref: /webtrees/tests/views/VerifySuccessPageTest.php (revision d11be7027e34e3121be11cc025421873364403f9)
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 Roach/**
234a213054SGreg Roach * Test harness for the view verify-success-page
244a213054SGreg Roach */
254a213054SGreg Roachclass VerifySuccessPageTest extends AbstractViewTest
264a213054SGreg Roach{
274a213054SGreg Roach    /**
284a213054SGreg Roach     * Standard tests for all elements.
294a213054SGreg Roach     */
304a213054SGreg Roach    public function testView(): void
314a213054SGreg Roach    {
324a213054SGreg Roach        $this->doTestView('verify-success-page', [
334a213054SGreg Roach            'title' => ['title']
344a213054SGreg Roach        ]);
354a213054SGreg Roach    }
364a213054SGreg Roach}
37