xref: /webtrees/tests/views/VerifySuccessPageTest.php (revision 4a213054c13c5caf2ed7b812a0d260527e167ef6)
1*4a213054SGreg Roach<?php
2*4a213054SGreg Roach
3*4a213054SGreg Roach/**
4*4a213054SGreg Roach * webtrees: online genealogy
5*4a213054SGreg Roach * Copyright (C) 2021 webtrees development team
6*4a213054SGreg Roach * This program is free software: you can redistribute it and/or modify
7*4a213054SGreg Roach * it under the terms of the GNU General Public License as published by
8*4a213054SGreg Roach * the Free Software Foundation, either version 3 of the License, or
9*4a213054SGreg Roach * (at your option) any later version.
10*4a213054SGreg Roach * This program is distributed in the hope that it will be useful,
11*4a213054SGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12*4a213054SGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13*4a213054SGreg Roach * GNU General Public License for more details.
14*4a213054SGreg Roach * You should have received a copy of the GNU General Public License
15*4a213054SGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
16*4a213054SGreg Roach */
17*4a213054SGreg Roach
18*4a213054SGreg Roachdeclare(strict_types=1);
19*4a213054SGreg Roach
20*4a213054SGreg Roachnamespace Fisharebest\Webtrees;
21*4a213054SGreg Roach
22*4a213054SGreg Roach/**
23*4a213054SGreg Roach * Test harness for the view verify-success-page
24*4a213054SGreg Roach */
25*4a213054SGreg Roachclass VerifySuccessPageTest extends AbstractViewTest
26*4a213054SGreg Roach{
27*4a213054SGreg Roach    /**
28*4a213054SGreg Roach     * Standard tests for all elements.
29*4a213054SGreg Roach     */
30*4a213054SGreg Roach    public function testView(): void
31*4a213054SGreg Roach    {
32*4a213054SGreg Roach        $this->doTestView('verify-success-page', [
33*4a213054SGreg Roach            'title' => ['title']
34*4a213054SGreg Roach        ]);
35*4a213054SGreg Roach    }
36*4a213054SGreg Roach}
37