summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2021-03-18 08:56:22 +0000
committerGreg Roach <greg@subaqua.co.uk>2021-03-18 10:20:57 +0000
commitdf93626bb52ff48b14844baf8098f2fc320d4155 (patch)
treec088b8aff61e009623671cd7eb1910628f644c91 /tests
parent0f18c21bf8d5a588c6c7302e76b5b09686bc43f9 (diff)
downloadwebtrees-df93626bb52ff48b14844baf8098f2fc320d4155.tar.gz
webtrees-df93626bb52ff48b14844baf8098f2fc320d4155.tar.bz2
webtrees-df93626bb52ff48b14844baf8098f2fc320d4155.zip
Replace GedcomCodeName with NameType
Diffstat (limited to 'tests')
-rw-r--r--tests/app/GedcomCode/GedcomCodeNameTest.php40
1 files changed, 0 insertions, 40 deletions
diff --git a/tests/app/GedcomCode/GedcomCodeNameTest.php b/tests/app/GedcomCode/GedcomCodeNameTest.php
deleted file mode 100644
index c403d4c5ae..0000000000
--- a/tests/app/GedcomCode/GedcomCodeNameTest.php
+++ /dev/null
@@ -1,40 +0,0 @@
-<?php
-
-/**
- * webtrees: online genealogy
- * Copyright (C) 2021 webtrees development team
- * This program is free software: you can redistribute it and/or modify
- * it under the terms of the GNU General Public License as published by
- * the Free Software Foundation, either version 3 of the License, or
- * (at your option) any later version.
- * This program is distributed in the hope that it will be useful,
- * but WITHOUT ANY WARRANTY; without even the implied warranty of
- * MERCHANTABILITY or FITNESS FOR A PARTICULAR PURPOSE. See the
- * GNU General Public License for more details.
- * You should have received a copy of the GNU General Public License
- * along with this program. If not, see <https://www.gnu.org/licenses/>.
- */
-
-declare(strict_types=1);
-
-namespace Fisharebest\Webtrees\GedcomCode;
-
-use Fisharebest\Webtrees\TestCase;
-
-/**
- * Test harness for the class GedcomCodeName
- *
- * @covers \Fisharebest\Webtrees\GedcomCode\GedcomCodeName
- */
-class GedcomCodeNameTest extends TestCase
-{
- /**
- * Test that the class exists
- *
- * @return void
- */
- public function testClassExists(): void
- {
- self::assertTrue(class_exists(GedcomCodePedi::class));
- }
-}