summaryrefslogtreecommitdiff
path: root/tests/app/Module/ModuleMenuInterfaceTest.php
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2021-01-15 09:57:34 +0000
committerGreg Roach <greg@subaqua.co.uk>2021-01-15 09:57:34 +0000
commit0701b3045b2ddcf99d2462244dcf76d416580f8c (patch)
treea7be00c789b7cc478f7f572ddd35067d54c246f4 /tests/app/Module/ModuleMenuInterfaceTest.php
parent91be49640f0d0e6fd24fc699848bce117bedafa7 (diff)
downloadwebtrees-0701b3045b2ddcf99d2462244dcf76d416580f8c.tar.gz
webtrees-0701b3045b2ddcf99d2462244dcf76d416580f8c.tar.bz2
webtrees-0701b3045b2ddcf99d2462244dcf76d416580f8c.zip
Testing
Diffstat (limited to 'tests/app/Module/ModuleMenuInterfaceTest.php')
-rw-r--r--tests/app/Module/ModuleMenuInterfaceTest.php40
1 files changed, 0 insertions, 40 deletions
diff --git a/tests/app/Module/ModuleMenuInterfaceTest.php b/tests/app/Module/ModuleMenuInterfaceTest.php
deleted file mode 100644
index 1df162ad72..0000000000
--- a/tests/app/Module/ModuleMenuInterfaceTest.php
+++ /dev/null
@@ -1,40 +0,0 @@
-<?php
-
-/**
- * webtrees: online genealogy
- * Copyright (C) 2020 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 <http://www.gnu.org/licenses/>.
- */
-
-declare(strict_types=1);
-
-namespace Fisharebest\Webtrees\Module;
-
-use Fisharebest\Webtrees\TestCase;
-
-/**
- * Test harness for the class ModuleMenuInterface
- *
- * @covers \Fisharebest\Webtrees\Module\ModuleMenuInterface
- */
-class ModuleMenuInterfaceTest extends TestCase
-{
- /**
- * Test that the class exists
- *
- * @return void
- */
- public function testClassExists(): void
- {
- self::assertTrue(interface_exists(ModuleMenuInterface::class));
- }
-}