xref: /webtrees/tests/app/Elements/NationalOrTribalOriginTest.php (revision 202c018b592d5a516e4a465dc6dc515f3be37399)
1f15544dcSGreg Roach<?php
2f15544dcSGreg Roach
3f15544dcSGreg Roach/**
4f15544dcSGreg Roach * webtrees: online genealogy
5d11be702SGreg Roach * Copyright (C) 2023 webtrees development team
6f15544dcSGreg Roach * This program is free software: you can redistribute it and/or modify
7f15544dcSGreg Roach * it under the terms of the GNU General Public License as published by
8f15544dcSGreg Roach * the Free Software Foundation, either version 3 of the License, or
9f15544dcSGreg Roach * (at your option) any later version.
10f15544dcSGreg Roach * This program is distributed in the hope that it will be useful,
11f15544dcSGreg Roach * but WITHOUT ANY WARRANTY; without even the implied warranty of
12f15544dcSGreg Roach * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
13f15544dcSGreg Roach * GNU General Public License for more details.
14f15544dcSGreg Roach * You should have received a copy of the GNU General Public License
15f15544dcSGreg Roach * along with this program. If not, see <https://www.gnu.org/licenses/>.
16f15544dcSGreg Roach */
17f15544dcSGreg Roach
18f15544dcSGreg Roachdeclare(strict_types=1);
19f15544dcSGreg Roach
20f15544dcSGreg Roachnamespace Fisharebest\Webtrees\Elements;
21f15544dcSGreg Roach
22*202c018bSGreg Roachuse PHPUnit\Framework\Attributes\CoversClass;
23*202c018bSGreg Roach
24*202c018bSGreg Roach
25*202c018bSGreg Roach#[CoversClass(AbstractElement::class)]
26*202c018bSGreg Roach#[CoversClass(NationalOrTribalOrigin::class)]
27b66f5d1aSGreg Roachclass NationalOrTribalOriginTest extends AbstractElementTestCase
28f15544dcSGreg Roach{
29f15544dcSGreg Roach    /**
30f15544dcSGreg Roach     * Standard tests for all elements.
31f15544dcSGreg Roach     */
32f15544dcSGreg Roach    public static function setupBeforeClass(): void
33f15544dcSGreg Roach    {
34f15544dcSGreg Roach        parent::setUpBeforeClass();
35f15544dcSGreg Roach
36f15544dcSGreg Roach        self::$element = new NationalOrTribalOrigin('label');
37f15544dcSGreg Roach    }
38f15544dcSGreg Roach}
39