diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2018-09-12 11:02:11 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2018-09-12 11:02:11 +0100 |
| commit | 84e2cf4e2b1803b300330f631d304db1a3c443dd (patch) | |
| tree | f3c6c51034ae72292f47075d4dc347bc8e05368a /tests/TestCase.php | |
| parent | 34f1e0a8ae4a1c91479b7ac0e62c93789d4c124b (diff) | |
| download | webtrees-84e2cf4e2b1803b300330f631d304db1a3c443dd.tar.gz webtrees-84e2cf4e2b1803b300330f631d304db1a3c443dd.tar.bz2 webtrees-84e2cf4e2b1803b300330f631d304db1a3c443dd.zip | |
Unit tests for TimeoutService
Diffstat (limited to 'tests/TestCase.php')
| -rw-r--r-- | tests/TestCase.php | 23 |
1 files changed, 23 insertions, 0 deletions
diff --git a/tests/TestCase.php b/tests/TestCase.php new file mode 100644 index 0000000000..998145283c --- /dev/null +++ b/tests/TestCase.php @@ -0,0 +1,23 @@ +<?php +/** + * webtrees: online genealogy + * Copyright (C) 2018 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/>. + */ +namespace Fisharebest\Webtrees; + +/** + * Base class for unit tests + */ +class TestCase extends \PHPUnit\Framework\TestCase +{ +} |
