summaryrefslogtreecommitdiff
path: root/tests/app/Schema
diff options
context:
space:
mode:
authorGreg Roach <greg@subaqua.co.uk>2022-12-06 13:36:20 +0000
committerGreg Roach <greg@subaqua.co.uk>2022-12-06 13:48:20 +0000
commita81396241f8b2caf70988b1979e1927e5c8e9398 (patch)
treeaf35cd2dc8df7eb30dac755805d0c57dfd5f2fe9 /tests/app/Schema
parent2699d89cd4ccb4ed42d54b35c9266a62446e456a (diff)
downloadwebtrees-a81396241f8b2caf70988b1979e1927e5c8e9398.tar.gz
webtrees-a81396241f8b2caf70988b1979e1927e5c8e9398.tar.bz2
webtrees-a81396241f8b2caf70988b1979e1927e5c8e9398.zip
Add minimal test scripts for every class, to pick up PHP version issues
Diffstat (limited to 'tests/app/Schema')
-rw-r--r--tests/app/Schema/Migration0Test.php35
-rw-r--r--tests/app/Schema/Migration10Test.php35
-rw-r--r--tests/app/Schema/Migration11Test.php35
-rw-r--r--tests/app/Schema/Migration12Test.php35
-rw-r--r--tests/app/Schema/Migration13Test.php35
-rw-r--r--tests/app/Schema/Migration14Test.php35
-rw-r--r--tests/app/Schema/Migration15Test.php35
-rw-r--r--tests/app/Schema/Migration16Test.php35
-rw-r--r--tests/app/Schema/Migration17Test.php35
-rw-r--r--tests/app/Schema/Migration18Test.php35
-rw-r--r--tests/app/Schema/Migration19Test.php35
-rw-r--r--tests/app/Schema/Migration1Test.php35
-rw-r--r--tests/app/Schema/Migration20Test.php35
-rw-r--r--tests/app/Schema/Migration21Test.php35
-rw-r--r--tests/app/Schema/Migration22Test.php35
-rw-r--r--tests/app/Schema/Migration23Test.php35
-rw-r--r--tests/app/Schema/Migration24Test.php35
-rw-r--r--tests/app/Schema/Migration25Test.php35
-rw-r--r--tests/app/Schema/Migration26Test.php35
-rw-r--r--tests/app/Schema/Migration27Test.php35
-rw-r--r--tests/app/Schema/Migration28Test.php35
-rw-r--r--tests/app/Schema/Migration29Test.php35
-rw-r--r--tests/app/Schema/Migration2Test.php35
-rw-r--r--tests/app/Schema/Migration30Test.php35
-rw-r--r--tests/app/Schema/Migration31Test.php35
-rw-r--r--tests/app/Schema/Migration32Test.php35
-rw-r--r--tests/app/Schema/Migration33Test.php35
-rw-r--r--tests/app/Schema/Migration34Test.php35
-rw-r--r--tests/app/Schema/Migration35Test.php35
-rw-r--r--tests/app/Schema/Migration36Test.php35
-rw-r--r--tests/app/Schema/Migration37Test.php35
-rw-r--r--tests/app/Schema/Migration38Test.php35
-rw-r--r--tests/app/Schema/Migration39Test.php35
-rw-r--r--tests/app/Schema/Migration3Test.php35
-rw-r--r--tests/app/Schema/Migration40Test.php35
-rw-r--r--tests/app/Schema/Migration41Test.php35
-rw-r--r--tests/app/Schema/Migration42Test.php35
-rw-r--r--tests/app/Schema/Migration43Test.php35
-rw-r--r--tests/app/Schema/Migration44Test.php35
-rw-r--r--tests/app/Schema/Migration4Test.php35
-rw-r--r--tests/app/Schema/Migration5Test.php35
-rw-r--r--tests/app/Schema/Migration6Test.php35
-rw-r--r--tests/app/Schema/Migration7Test.php35
-rw-r--r--tests/app/Schema/Migration8Test.php35
-rw-r--r--tests/app/Schema/Migration9Test.php35
-rw-r--r--tests/app/Schema/SeedDefaultResnTableTest.php35
-rw-r--r--tests/app/Schema/SeedGedcomTableTest.php35
-rw-r--r--tests/app/Schema/SeedUserTableTest.php35
48 files changed, 1680 insertions, 0 deletions
diff --git a/tests/app/Schema/Migration0Test.php b/tests/app/Schema/Migration0Test.php
new file mode 100644
index 0000000000..baaf213d9f
--- /dev/null
+++ b/tests/app/Schema/Migration0Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration0
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration0
+ */
+class Migration0Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration0::class));
+ }
+}
diff --git a/tests/app/Schema/Migration10Test.php b/tests/app/Schema/Migration10Test.php
new file mode 100644
index 0000000000..6fd0dfc9fd
--- /dev/null
+++ b/tests/app/Schema/Migration10Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration10
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration10
+ */
+class Migration10Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration10::class));
+ }
+}
diff --git a/tests/app/Schema/Migration11Test.php b/tests/app/Schema/Migration11Test.php
new file mode 100644
index 0000000000..fff501e0cd
--- /dev/null
+++ b/tests/app/Schema/Migration11Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration11
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration11
+ */
+class Migration11Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration11::class));
+ }
+}
diff --git a/tests/app/Schema/Migration12Test.php b/tests/app/Schema/Migration12Test.php
new file mode 100644
index 0000000000..c4e334ebf9
--- /dev/null
+++ b/tests/app/Schema/Migration12Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration12
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration12
+ */
+class Migration12Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration12::class));
+ }
+}
diff --git a/tests/app/Schema/Migration13Test.php b/tests/app/Schema/Migration13Test.php
new file mode 100644
index 0000000000..6d80476ec6
--- /dev/null
+++ b/tests/app/Schema/Migration13Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration13
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration13
+ */
+class Migration13Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration13::class));
+ }
+}
diff --git a/tests/app/Schema/Migration14Test.php b/tests/app/Schema/Migration14Test.php
new file mode 100644
index 0000000000..d93bcb6de9
--- /dev/null
+++ b/tests/app/Schema/Migration14Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration14
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration14
+ */
+class Migration14Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration14::class));
+ }
+}
diff --git a/tests/app/Schema/Migration15Test.php b/tests/app/Schema/Migration15Test.php
new file mode 100644
index 0000000000..8a4ba59055
--- /dev/null
+++ b/tests/app/Schema/Migration15Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration15
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration15
+ */
+class Migration15Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration15::class));
+ }
+}
diff --git a/tests/app/Schema/Migration16Test.php b/tests/app/Schema/Migration16Test.php
new file mode 100644
index 0000000000..2195a53d7f
--- /dev/null
+++ b/tests/app/Schema/Migration16Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration16
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration16
+ */
+class Migration16Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration16::class));
+ }
+}
diff --git a/tests/app/Schema/Migration17Test.php b/tests/app/Schema/Migration17Test.php
new file mode 100644
index 0000000000..258c07b121
--- /dev/null
+++ b/tests/app/Schema/Migration17Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration17
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration17
+ */
+class Migration17Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration17::class));
+ }
+}
diff --git a/tests/app/Schema/Migration18Test.php b/tests/app/Schema/Migration18Test.php
new file mode 100644
index 0000000000..90b4f1cb88
--- /dev/null
+++ b/tests/app/Schema/Migration18Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration18
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration18
+ */
+class Migration18Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration18::class));
+ }
+}
diff --git a/tests/app/Schema/Migration19Test.php b/tests/app/Schema/Migration19Test.php
new file mode 100644
index 0000000000..6f67decf99
--- /dev/null
+++ b/tests/app/Schema/Migration19Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration19
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration19
+ */
+class Migration19Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration19::class));
+ }
+}
diff --git a/tests/app/Schema/Migration1Test.php b/tests/app/Schema/Migration1Test.php
new file mode 100644
index 0000000000..27ea03b0e8
--- /dev/null
+++ b/tests/app/Schema/Migration1Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration1
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration1
+ */
+class Migration1Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration1::class));
+ }
+}
diff --git a/tests/app/Schema/Migration20Test.php b/tests/app/Schema/Migration20Test.php
new file mode 100644
index 0000000000..173210033c
--- /dev/null
+++ b/tests/app/Schema/Migration20Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration20
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration20
+ */
+class Migration20Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration20::class));
+ }
+}
diff --git a/tests/app/Schema/Migration21Test.php b/tests/app/Schema/Migration21Test.php
new file mode 100644
index 0000000000..3b74d2d28a
--- /dev/null
+++ b/tests/app/Schema/Migration21Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration21
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration21
+ */
+class Migration21Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration21::class));
+ }
+}
diff --git a/tests/app/Schema/Migration22Test.php b/tests/app/Schema/Migration22Test.php
new file mode 100644
index 0000000000..d1ce9cb53e
--- /dev/null
+++ b/tests/app/Schema/Migration22Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration22
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration22
+ */
+class Migration22Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration22::class));
+ }
+}
diff --git a/tests/app/Schema/Migration23Test.php b/tests/app/Schema/Migration23Test.php
new file mode 100644
index 0000000000..058dec3db5
--- /dev/null
+++ b/tests/app/Schema/Migration23Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration23
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration23
+ */
+class Migration23Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration23::class));
+ }
+}
diff --git a/tests/app/Schema/Migration24Test.php b/tests/app/Schema/Migration24Test.php
new file mode 100644
index 0000000000..32937a5f62
--- /dev/null
+++ b/tests/app/Schema/Migration24Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration24
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration24
+ */
+class Migration24Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration24::class));
+ }
+}
diff --git a/tests/app/Schema/Migration25Test.php b/tests/app/Schema/Migration25Test.php
new file mode 100644
index 0000000000..65a9b1f30c
--- /dev/null
+++ b/tests/app/Schema/Migration25Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration25
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration25
+ */
+class Migration25Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration25::class));
+ }
+}
diff --git a/tests/app/Schema/Migration26Test.php b/tests/app/Schema/Migration26Test.php
new file mode 100644
index 0000000000..708f04f2e7
--- /dev/null
+++ b/tests/app/Schema/Migration26Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration26
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration26
+ */
+class Migration26Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration26::class));
+ }
+}
diff --git a/tests/app/Schema/Migration27Test.php b/tests/app/Schema/Migration27Test.php
new file mode 100644
index 0000000000..34db024902
--- /dev/null
+++ b/tests/app/Schema/Migration27Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration27
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration27
+ */
+class Migration27Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration27::class));
+ }
+}
diff --git a/tests/app/Schema/Migration28Test.php b/tests/app/Schema/Migration28Test.php
new file mode 100644
index 0000000000..dd3eef1dda
--- /dev/null
+++ b/tests/app/Schema/Migration28Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration28
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration28
+ */
+class Migration28Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration28::class));
+ }
+}
diff --git a/tests/app/Schema/Migration29Test.php b/tests/app/Schema/Migration29Test.php
new file mode 100644
index 0000000000..8488431bff
--- /dev/null
+++ b/tests/app/Schema/Migration29Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration29
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration29
+ */
+class Migration29Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration29::class));
+ }
+}
diff --git a/tests/app/Schema/Migration2Test.php b/tests/app/Schema/Migration2Test.php
new file mode 100644
index 0000000000..a3da50c9a7
--- /dev/null
+++ b/tests/app/Schema/Migration2Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration2
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration2
+ */
+class Migration2Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration2::class));
+ }
+}
diff --git a/tests/app/Schema/Migration30Test.php b/tests/app/Schema/Migration30Test.php
new file mode 100644
index 0000000000..5f48bff7aa
--- /dev/null
+++ b/tests/app/Schema/Migration30Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration30
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration30
+ */
+class Migration30Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration30::class));
+ }
+}
diff --git a/tests/app/Schema/Migration31Test.php b/tests/app/Schema/Migration31Test.php
new file mode 100644
index 0000000000..b0fd3d37c8
--- /dev/null
+++ b/tests/app/Schema/Migration31Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration31
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration31
+ */
+class Migration31Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration31::class));
+ }
+}
diff --git a/tests/app/Schema/Migration32Test.php b/tests/app/Schema/Migration32Test.php
new file mode 100644
index 0000000000..8211fb4ad0
--- /dev/null
+++ b/tests/app/Schema/Migration32Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration32
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration32
+ */
+class Migration32Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration32::class));
+ }
+}
diff --git a/tests/app/Schema/Migration33Test.php b/tests/app/Schema/Migration33Test.php
new file mode 100644
index 0000000000..ff53ec5a3f
--- /dev/null
+++ b/tests/app/Schema/Migration33Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration33
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration33
+ */
+class Migration33Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration33::class));
+ }
+}
diff --git a/tests/app/Schema/Migration34Test.php b/tests/app/Schema/Migration34Test.php
new file mode 100644
index 0000000000..ad2f72ed18
--- /dev/null
+++ b/tests/app/Schema/Migration34Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration34
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration34
+ */
+class Migration34Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration34::class));
+ }
+}
diff --git a/tests/app/Schema/Migration35Test.php b/tests/app/Schema/Migration35Test.php
new file mode 100644
index 0000000000..d14fcab6bc
--- /dev/null
+++ b/tests/app/Schema/Migration35Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration35
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration35
+ */
+class Migration35Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration35::class));
+ }
+}
diff --git a/tests/app/Schema/Migration36Test.php b/tests/app/Schema/Migration36Test.php
new file mode 100644
index 0000000000..47f44ff235
--- /dev/null
+++ b/tests/app/Schema/Migration36Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration36
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration36
+ */
+class Migration36Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration36::class));
+ }
+}
diff --git a/tests/app/Schema/Migration37Test.php b/tests/app/Schema/Migration37Test.php
new file mode 100644
index 0000000000..015f56e6ee
--- /dev/null
+++ b/tests/app/Schema/Migration37Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration37
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration37
+ */
+class Migration37Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration37::class));
+ }
+}
diff --git a/tests/app/Schema/Migration38Test.php b/tests/app/Schema/Migration38Test.php
new file mode 100644
index 0000000000..b52255c6e5
--- /dev/null
+++ b/tests/app/Schema/Migration38Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration38
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration38
+ */
+class Migration38Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration38::class));
+ }
+}
diff --git a/tests/app/Schema/Migration39Test.php b/tests/app/Schema/Migration39Test.php
new file mode 100644
index 0000000000..9813037593
--- /dev/null
+++ b/tests/app/Schema/Migration39Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration39
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration39
+ */
+class Migration39Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration39::class));
+ }
+}
diff --git a/tests/app/Schema/Migration3Test.php b/tests/app/Schema/Migration3Test.php
new file mode 100644
index 0000000000..702487c9b9
--- /dev/null
+++ b/tests/app/Schema/Migration3Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration3
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration3
+ */
+class Migration3Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration3::class));
+ }
+}
diff --git a/tests/app/Schema/Migration40Test.php b/tests/app/Schema/Migration40Test.php
new file mode 100644
index 0000000000..2557c55297
--- /dev/null
+++ b/tests/app/Schema/Migration40Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration40
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration40
+ */
+class Migration40Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration40::class));
+ }
+}
diff --git a/tests/app/Schema/Migration41Test.php b/tests/app/Schema/Migration41Test.php
new file mode 100644
index 0000000000..b6e52c20c3
--- /dev/null
+++ b/tests/app/Schema/Migration41Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration41
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration41
+ */
+class Migration41Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration41::class));
+ }
+}
diff --git a/tests/app/Schema/Migration42Test.php b/tests/app/Schema/Migration42Test.php
new file mode 100644
index 0000000000..de3d7ab4f6
--- /dev/null
+++ b/tests/app/Schema/Migration42Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration42
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration42
+ */
+class Migration42Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration42::class));
+ }
+}
diff --git a/tests/app/Schema/Migration43Test.php b/tests/app/Schema/Migration43Test.php
new file mode 100644
index 0000000000..551f444aba
--- /dev/null
+++ b/tests/app/Schema/Migration43Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration43
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration43
+ */
+class Migration43Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration43::class));
+ }
+}
diff --git a/tests/app/Schema/Migration44Test.php b/tests/app/Schema/Migration44Test.php
new file mode 100644
index 0000000000..8554949c0a
--- /dev/null
+++ b/tests/app/Schema/Migration44Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration44
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration44
+ */
+class Migration44Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration44::class));
+ }
+}
diff --git a/tests/app/Schema/Migration4Test.php b/tests/app/Schema/Migration4Test.php
new file mode 100644
index 0000000000..e0432c0856
--- /dev/null
+++ b/tests/app/Schema/Migration4Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration4
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration4
+ */
+class Migration4Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration4::class));
+ }
+}
diff --git a/tests/app/Schema/Migration5Test.php b/tests/app/Schema/Migration5Test.php
new file mode 100644
index 0000000000..01b8da7789
--- /dev/null
+++ b/tests/app/Schema/Migration5Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration5
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration5
+ */
+class Migration5Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration5::class));
+ }
+}
diff --git a/tests/app/Schema/Migration6Test.php b/tests/app/Schema/Migration6Test.php
new file mode 100644
index 0000000000..686c35f17e
--- /dev/null
+++ b/tests/app/Schema/Migration6Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration6
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration6
+ */
+class Migration6Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration6::class));
+ }
+}
diff --git a/tests/app/Schema/Migration7Test.php b/tests/app/Schema/Migration7Test.php
new file mode 100644
index 0000000000..e7f0fec484
--- /dev/null
+++ b/tests/app/Schema/Migration7Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration7
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration7
+ */
+class Migration7Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration7::class));
+ }
+}
diff --git a/tests/app/Schema/Migration8Test.php b/tests/app/Schema/Migration8Test.php
new file mode 100644
index 0000000000..ab713ef5b2
--- /dev/null
+++ b/tests/app/Schema/Migration8Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration8
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration8
+ */
+class Migration8Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration8::class));
+ }
+}
diff --git a/tests/app/Schema/Migration9Test.php b/tests/app/Schema/Migration9Test.php
new file mode 100644
index 0000000000..43152d0360
--- /dev/null
+++ b/tests/app/Schema/Migration9Test.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class Migration9
+ *
+ * @covers Fisharebest\Webtrees\Schema\Migration9
+ */
+class Migration9Test extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\Migration9::class));
+ }
+}
diff --git a/tests/app/Schema/SeedDefaultResnTableTest.php b/tests/app/Schema/SeedDefaultResnTableTest.php
new file mode 100644
index 0000000000..d51837b1ef
--- /dev/null
+++ b/tests/app/Schema/SeedDefaultResnTableTest.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class SeedDefaultResnTable
+ *
+ * @covers Fisharebest\Webtrees\Schema\SeedDefaultResnTable
+ */
+class SeedDefaultResnTableTest extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\SeedDefaultResnTable::class));
+ }
+}
diff --git a/tests/app/Schema/SeedGedcomTableTest.php b/tests/app/Schema/SeedGedcomTableTest.php
new file mode 100644
index 0000000000..aa3dec3c99
--- /dev/null
+++ b/tests/app/Schema/SeedGedcomTableTest.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class SeedGedcomTable
+ *
+ * @covers Fisharebest\Webtrees\Schema\SeedGedcomTable
+ */
+class SeedGedcomTableTest extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\SeedGedcomTable::class));
+ }
+}
diff --git a/tests/app/Schema/SeedUserTableTest.php b/tests/app/Schema/SeedUserTableTest.php
new file mode 100644
index 0000000000..454aba75c6
--- /dev/null
+++ b/tests/app/Schema/SeedUserTableTest.php
@@ -0,0 +1,35 @@
+<?php
+
+/**
+ * webtrees: online genealogy
+ * Copyright (C) 2022 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\Schema;
+
+use Fisharebest\Webtrees\TestCase;
+
+/**
+ * Test harness for the class SeedUserTable
+ *
+ * @covers Fisharebest\Webtrees\Schema\SeedUserTable
+ */
+class SeedUserTableTest extends TestCase
+{
+ public function testClass(): void
+ {
+ $this->assertTrue(class_exists(\Fisharebest\Webtrees\Schema\SeedUserTable::class));
+ }
+}