diff options
| author | Greg Roach <fisharebest@webtrees.net> | 2019-10-09 14:00:47 +0100 |
|---|---|---|
| committer | Greg Roach <fisharebest@webtrees.net> | 2019-10-09 20:45:24 +0100 |
| commit | 3cfcc809af53e831fa6cafac7b274a2cb407db6e (patch) | |
| tree | 17776f251f701ea946875c7eb532f1bfeeef4f94 /tests/app/Module/BatchUpdate | |
| parent | c81b7bf19f35fbd9d805aa3658f596ace2d433d9 (diff) | |
| download | webtrees-3cfcc809af53e831fa6cafac7b274a2cb407db6e.tar.gz webtrees-3cfcc809af53e831fa6cafac7b274a2cb407db6e.tar.bz2 webtrees-3cfcc809af53e831fa6cafac7b274a2cb407db6e.zip | |
Working on routing; Code cleanup
Diffstat (limited to 'tests/app/Module/BatchUpdate')
5 files changed, 15 insertions, 5 deletions
diff --git a/tests/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.php index be8789dded..425a817a65 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.php @@ -18,10 +18,12 @@ declare(strict_types=1); namespace Fisharebest\Webtrees\Module\BatchUpdate; +use Fisharebest\Webtrees\TestCase; + /** * Test harness for the class BatchUpdateDuplicateLinksPlugin */ -class BatchUpdateDuplicateLinksPluginTest extends \Fisharebest\Webtrees\TestCase +class BatchUpdateDuplicateLinksPluginTest extends TestCase { /** * Test that the class exists diff --git a/tests/app/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.php index 281c587dbf..7774f61bac 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.php @@ -18,10 +18,12 @@ declare(strict_types=1); namespace Fisharebest\Webtrees\Module\BatchUpdate; +use Fisharebest\Webtrees\TestCase; + /** * Test harness for the class BatchUpdateMarriedNamesPlugin */ -class BatchUpdateMarriedNamesPluginTest extends \Fisharebest\Webtrees\TestCase +class BatchUpdateMarriedNamesPluginTest extends TestCase { /** * Test that the class exists diff --git a/tests/app/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.php index e679be0d34..42a5017098 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.php @@ -18,10 +18,12 @@ declare(strict_types=1); namespace Fisharebest\Webtrees\Module\BatchUpdate; +use Fisharebest\Webtrees\TestCase; + /** * Test harness for the class BatchUpdateMissingDeathPlugin */ -class BatchUpdateMissingDeathPluginTest extends \Fisharebest\Webtrees\TestCase +class BatchUpdateMissingDeathPluginTest extends TestCase { /** * Test that the class exists diff --git a/tests/app/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.php index 1787f2aa1f..1e359bec55 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.php @@ -18,10 +18,12 @@ declare(strict_types=1); namespace Fisharebest\Webtrees\Module\BatchUpdate; +use Fisharebest\Webtrees\TestCase; + /** * Test harness for the class BatchUpdateNameFormatPlugin */ -class BatchUpdateNameFormatPluginTest extends \Fisharebest\Webtrees\TestCase +class BatchUpdateNameFormatPluginTest extends TestCase { /** * Test that the class exists diff --git a/tests/app/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.php index c192d8ab73..a123dab118 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.php @@ -18,10 +18,12 @@ declare(strict_types=1); namespace Fisharebest\Webtrees\Module\BatchUpdate; +use Fisharebest\Webtrees\TestCase; + /** * Test harness for the class BatchUpdateSearchReplacePlugin */ -class BatchUpdateSearchReplacePluginTest extends \Fisharebest\Webtrees\TestCase +class BatchUpdateSearchReplacePluginTest extends TestCase { /** * Test that the class exists |
