summaryrefslogtreecommitdiff
path: root/tests/app
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2019-02-21 14:27:02 +0000
committerGreg Roach <fisharebest@webtrees.net>2019-02-21 14:33:54 +0000
commita93f450e7efcf8e9dda787aaa9bfbc882bd2c767 (patch)
tree21e5c4ded601c68b612db42ae37dace424eaaf44 /tests/app
parent4a52049613a3fd380896a97f74b94d45ccccc97c (diff)
downloadwebtrees-a93f450e7efcf8e9dda787aaa9bfbc882bd2c767.tar.gz
webtrees-a93f450e7efcf8e9dda787aaa9bfbc882bd2c767.tar.bz2
webtrees-a93f450e7efcf8e9dda787aaa9bfbc882bd2c767.zip
Delete old database code
Diffstat (limited to 'tests/app')
-rw-r--r--tests/app/StatementTest.php34
1 files changed, 0 insertions, 34 deletions
diff --git a/tests/app/StatementTest.php b/tests/app/StatementTest.php
deleted file mode 100644
index 74ec90a0c7..0000000000
--- a/tests/app/StatementTest.php
+++ /dev/null
@@ -1,34 +0,0 @@
-<?php
-/**
- * webtrees: online genealogy
- * Copyright (C) 2019 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;
-
-/**
- * Test harness for the class Statement
- */
-class StatementTest extends TestCase
-{
- /**
- * Test that the class exists
- *
- * @return void
- */
- public function testClassExists(): void
- {
- $this->assertTrue(class_exists('\Fisharebest\Webtrees\Statement'));
- }
-}