summaryrefslogtreecommitdiff
path: root/tests/app/GedcomCode
diff options
context:
space:
mode:
authorGreg Roach <fisharebest@webtrees.net>2018-09-12 11:02:11 +0100
committerGreg Roach <fisharebest@webtrees.net>2018-09-12 11:02:11 +0100
commit84e2cf4e2b1803b300330f631d304db1a3c443dd (patch)
treef3c6c51034ae72292f47075d4dc347bc8e05368a /tests/app/GedcomCode
parent34f1e0a8ae4a1c91479b7ac0e62c93789d4c124b (diff)
downloadwebtrees-84e2cf4e2b1803b300330f631d304db1a3c443dd.tar.gz
webtrees-84e2cf4e2b1803b300330f631d304db1a3c443dd.tar.bz2
webtrees-84e2cf4e2b1803b300330f631d304db1a3c443dd.zip
Unit tests for TimeoutService
Diffstat (limited to 'tests/app/GedcomCode')
-rw-r--r--tests/app/GedcomCode/GedcomCodeAdopTest.php37
-rw-r--r--tests/app/GedcomCode/GedcomCodeNameTest.php37
-rw-r--r--tests/app/GedcomCode/GedcomCodePediTest.php37
-rw-r--r--tests/app/GedcomCode/GedcomCodeQuayTest.php37
-rw-r--r--tests/app/GedcomCode/GedcomCodeRelaTest.php37
-rw-r--r--tests/app/GedcomCode/GedcomCodeStatTest.php37
-rw-r--r--tests/app/GedcomCode/GedcomCodeTempTest.php37
7 files changed, 259 insertions, 0 deletions
diff --git a/tests/app/GedcomCode/GedcomCodeAdopTest.php b/tests/app/GedcomCode/GedcomCodeAdopTest.php
new file mode 100644
index 0000000000..3e156d6aa7
--- /dev/null
+++ b/tests/app/GedcomCode/GedcomCodeAdopTest.php
@@ -0,0 +1,37 @@
+<?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\GedcomCode;
+
+/**
+ * Test harness for the class GedcomCodeAdop
+ */
+class GedcomCodeAdopTest extends \Fisharebest\Webtrees\TestCase
+{
+ /**
+ * Prepare the environment for these tests
+ */
+ public function setUp()
+ {
+ }
+
+ /**
+ * Test that the class exists
+ */
+ public function testClassExists()
+ {
+ $this->assertTrue(class_exists('\Fisharebest\Webtrees\GedcomCode\GedcomCodeAdop'));
+ }
+}
diff --git a/tests/app/GedcomCode/GedcomCodeNameTest.php b/tests/app/GedcomCode/GedcomCodeNameTest.php
new file mode 100644
index 0000000000..00eb07fd24
--- /dev/null
+++ b/tests/app/GedcomCode/GedcomCodeNameTest.php
@@ -0,0 +1,37 @@
+<?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\GedcomCode;
+
+/**
+ * Test harness for the class GedcomCodeName
+ */
+class GedcomCodeNameTest extends \Fisharebest\Webtrees\TestCase
+{
+ /**
+ * Prepare the environment for these tests
+ */
+ public function setUp()
+ {
+ }
+
+ /**
+ * Test that the class exists
+ */
+ public function testClassExists()
+ {
+ $this->assertTrue(class_exists('\Fisharebest\Webtrees\GedcomCode\GedcomCodePedi'));
+ }
+}
diff --git a/tests/app/GedcomCode/GedcomCodePediTest.php b/tests/app/GedcomCode/GedcomCodePediTest.php
new file mode 100644
index 0000000000..e12a1c8178
--- /dev/null
+++ b/tests/app/GedcomCode/GedcomCodePediTest.php
@@ -0,0 +1,37 @@
+<?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\GedcomCode;
+
+/**
+ * Test harness for the class GedcomCodePedi
+ */
+class GedcomCodePediTest extends \Fisharebest\Webtrees\TestCase
+{
+ /**
+ * Prepare the environment for these tests
+ */
+ public function setUp()
+ {
+ }
+
+ /**
+ * Test that the class exists
+ */
+ public function testClassExists()
+ {
+ $this->assertTrue(class_exists('\Fisharebest\Webtrees\GedcomCode\GedcomCodePedi'));
+ }
+}
diff --git a/tests/app/GedcomCode/GedcomCodeQuayTest.php b/tests/app/GedcomCode/GedcomCodeQuayTest.php
new file mode 100644
index 0000000000..0f861c44e6
--- /dev/null
+++ b/tests/app/GedcomCode/GedcomCodeQuayTest.php
@@ -0,0 +1,37 @@
+<?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\GedcomCode;
+
+/**
+ * Test harness for the class GedcomCodeQuay
+ */
+class GedcomCodeQuayTest extends \Fisharebest\Webtrees\TestCase
+{
+ /**
+ * Prepare the environment for these tests
+ */
+ public function setUp()
+ {
+ }
+
+ /**
+ * Test that the class exists
+ */
+ public function testClassExists()
+ {
+ $this->assertTrue(class_exists('\Fisharebest\Webtrees\GedcomCode\GedcomCodeQuay'));
+ }
+}
diff --git a/tests/app/GedcomCode/GedcomCodeRelaTest.php b/tests/app/GedcomCode/GedcomCodeRelaTest.php
new file mode 100644
index 0000000000..92a60b9b6b
--- /dev/null
+++ b/tests/app/GedcomCode/GedcomCodeRelaTest.php
@@ -0,0 +1,37 @@
+<?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\GedcomCode;
+
+/**
+ * Test harness for the class GedcomCodeRela
+ */
+class GedcomCodeRelaTest extends \Fisharebest\Webtrees\TestCase
+{
+ /**
+ * Prepare the environment for these tests
+ */
+ public function setUp()
+ {
+ }
+
+ /**
+ * Test that the class exists
+ */
+ public function testClassExists()
+ {
+ $this->assertTrue(class_exists('\Fisharebest\Webtrees\GedcomCode\GedcomCodeRela'));
+ }
+}
diff --git a/tests/app/GedcomCode/GedcomCodeStatTest.php b/tests/app/GedcomCode/GedcomCodeStatTest.php
new file mode 100644
index 0000000000..c8a2ba0ccd
--- /dev/null
+++ b/tests/app/GedcomCode/GedcomCodeStatTest.php
@@ -0,0 +1,37 @@
+<?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\GedcomCode;
+
+/**
+ * Test harness for the class GedcomCodeStat
+ */
+class GedcomCodeStatTest extends \Fisharebest\Webtrees\TestCase
+{
+ /**
+ * Prepare the environment for these tests
+ */
+ public function setUp()
+ {
+ }
+
+ /**
+ * Test that the class exists
+ */
+ public function testClassExists()
+ {
+ $this->assertTrue(class_exists('\Fisharebest\Webtrees\GedcomCode\GedcomCodeStat'));
+ }
+}
diff --git a/tests/app/GedcomCode/GedcomCodeTempTest.php b/tests/app/GedcomCode/GedcomCodeTempTest.php
new file mode 100644
index 0000000000..275a2f70c9
--- /dev/null
+++ b/tests/app/GedcomCode/GedcomCodeTempTest.php
@@ -0,0 +1,37 @@
+<?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\GedcomCode;
+
+/**
+ * Test harness for the class GedcomCodeTemp
+ */
+class GedcomCodeTempTest extends \Fisharebest\Webtrees\TestCase
+{
+ /**
+ * Prepare the environment for these tests
+ */
+ public function setUp()
+ {
+ }
+
+ /**
+ * Test that the class exists
+ */
+ public function testClassExists()
+ {
+ $this->assertTrue(class_exists('\Fisharebest\Webtrees\GedcomCode\GedcomCodeTemp'));
+ }
+}