summaryrefslogtreecommitdiff
path: root/tests
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2021-03-18 09:19:06 +0000
committerGreg Roach <greg@subaqua.co.uk>2021-03-18 10:20:57 +0000
commit0da48f5fab4e4245ac39ea68a2bec3e46f410c3a (patch)
tree5bf06d9977fbcf3d21525413e8394280d55b8989 /tests
parent09762cb3d12bae494b5a11840dceb4be3f8ba16c (diff)
downloadwebtrees-0da48f5fab4e4245ac39ea68a2bec3e46f410c3a.tar.gz
webtrees-0da48f5fab4e4245ac39ea68a2bec3e46f410c3a.tar.bz2
webtrees-0da48f5fab4e4245ac39ea68a2bec3e46f410c3a.zip
Remove unused GedcomCodeTemp
Diffstat (limited to 'tests')
-rw-r--r--tests/app/GedcomCode/GedcomCodeTempTest.php40
1 files changed, 0 insertions, 40 deletions
diff --git a/tests/app/GedcomCode/GedcomCodeTempTest.php b/tests/app/GedcomCode/GedcomCodeTempTest.php
deleted file mode 100644
index dceb889fb1..0000000000
--- a/tests/app/GedcomCode/GedcomCodeTempTest.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 GedcomCodeTemp
- *
- * @covers \Fisharebest\Webtrees\GedcomCode\GedcomCodeTemp
- */
-class GedcomCodeTempTest extends TestCase
-{
- /**
- * Test that the class exists
- *
- * @return void
- */
- public function testClassExists(): void
- {
- self::assertTrue(class_exists(GedcomCodeTemp::class));
- }
-}