diff options
Diffstat (limited to 'tests')
163 files changed, 5 insertions, 985 deletions
diff --git a/tests/app/AuthTest.php b/tests/app/AuthTest.php index 72f7c2a72e..c82c4ec1d9 100644 --- a/tests/app/AuthTest.php +++ b/tests/app/AuthTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class AuthTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\Auth')); diff --git a/tests/app/Controller/AdvancedSearchControllerTest.php b/tests/app/Controller/AdvancedSearchControllerTest.php index 61860de792..ba8b7e55eb 100644 --- a/tests/app/Controller/AdvancedSearchControllerTest.php +++ b/tests/app/Controller/AdvancedSearchControllerTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class AdvancedSearchControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\AdvancedSearchController')); diff --git a/tests/app/Controller/AjaxControllerTest.php b/tests/app/Controller/AjaxControllerTest.php index c3cfb90545..f981a6271d 100644 --- a/tests/app/Controller/AjaxControllerTest.php +++ b/tests/app/Controller/AjaxControllerTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class AjaxControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\AjaxController')); diff --git a/tests/app/Controller/AncestryControllerTest.php b/tests/app/Controller/AncestryControllerTest.php index f3664b2d64..76d24b05bd 100644 --- a/tests/app/Controller/AncestryControllerTest.php +++ b/tests/app/Controller/AncestryControllerTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class AncestryControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\AncestryController')); diff --git a/tests/app/Controller/BaseControllerTest.php b/tests/app/Controller/BaseControllerTest.php index dd3970551b..9eb444e19a 100644 --- a/tests/app/Controller/BaseControllerTest.php +++ b/tests/app/Controller/BaseControllerTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class BaseControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\BaseController')); diff --git a/tests/app/Controller/BranchesControllerTest.php b/tests/app/Controller/BranchesControllerTest.php index cb5cc82ed4..896636f86b 100644 --- a/tests/app/Controller/BranchesControllerTest.php +++ b/tests/app/Controller/BranchesControllerTest.php @@ -24,15 +24,11 @@ use PHPUnit_Framework_TestCase; class BranchesControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\BranchesController')); diff --git a/tests/app/Controller/ChartControllerTest.php b/tests/app/Controller/ChartControllerTest.php index 1dd05fdf2e..c8d2bebd12 100644 --- a/tests/app/Controller/ChartControllerTest.php +++ b/tests/app/Controller/ChartControllerTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class ChartControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\ChartController')); diff --git a/tests/app/Controller/CompactControllerTest.php b/tests/app/Controller/CompactControllerTest.php index c3c7b496ac..f8fc202a1c 100644 --- a/tests/app/Controller/CompactControllerTest.php +++ b/tests/app/Controller/CompactControllerTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class CompactControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\CompactController')); diff --git a/tests/app/Controller/DescendancyControllerTest.php b/tests/app/Controller/DescendancyControllerTest.php index b90985513a..7446b7a33b 100644 --- a/tests/app/Controller/DescendancyControllerTest.php +++ b/tests/app/Controller/DescendancyControllerTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class DescendancyControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\DescendancyController')); diff --git a/tests/app/Controller/FamilyControllerTest.php b/tests/app/Controller/FamilyControllerTest.php index 0788e1f328..19f7cba48f 100644 --- a/tests/app/Controller/FamilyControllerTest.php +++ b/tests/app/Controller/FamilyControllerTest.php @@ -24,8 +24,6 @@ use PHPUnit_Framework_TestCase; class FamilyControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { defined('WT_ROOT') || define('WT_ROOT', ''); @@ -33,8 +31,6 @@ class FamilyControllerTest extends PHPUnit_Framework_TestCase { /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\FamilyController')); diff --git a/tests/app/Controller/FamilybookControllerTest.php b/tests/app/Controller/FamilybookControllerTest.php index f0a4858184..f5c7326ddd 100644 --- a/tests/app/Controller/FamilybookControllerTest.php +++ b/tests/app/Controller/FamilybookControllerTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FamilybookControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\FamilyBookController')); diff --git a/tests/app/Controller/FanchartControllerTest.php b/tests/app/Controller/FanchartControllerTest.php index 4602672207..e6561a4bb0 100644 --- a/tests/app/Controller/FanchartControllerTest.php +++ b/tests/app/Controller/FanchartControllerTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FanchartControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\FanchartController')); diff --git a/tests/app/Controller/GedcomRecordControllerTest.php b/tests/app/Controller/GedcomRecordControllerTest.php index 513055d133..121764d280 100644 --- a/tests/app/Controller/GedcomRecordControllerTest.php +++ b/tests/app/Controller/GedcomRecordControllerTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class GedcomRecordControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\GedcomRecordController')); diff --git a/tests/app/Controller/HourglassControllerTest.php b/tests/app/Controller/HourglassControllerTest.php index 1504cbaee0..345d85b4ff 100644 --- a/tests/app/Controller/HourglassControllerTest.php +++ b/tests/app/Controller/HourglassControllerTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class HourglassControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\HourglassController')); diff --git a/tests/app/Controller/IndividualControllerTest.php b/tests/app/Controller/IndividualControllerTest.php index 9d3f2fbbcd..3d9144e3cf 100644 --- a/tests/app/Controller/IndividualControllerTest.php +++ b/tests/app/Controller/IndividualControllerTest.php @@ -24,8 +24,6 @@ use PHPUnit_Framework_TestCase; class IndividualControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { defined('WT_ROOT') || define('WT_ROOT', ''); @@ -33,8 +31,6 @@ class IndividualControllerTest extends PHPUnit_Framework_TestCase { /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\IndividualController')); diff --git a/tests/app/Controller/LifespanControllerTest.php b/tests/app/Controller/LifespanControllerTest.php index e1980c69c1..24d9b63b49 100644 --- a/tests/app/Controller/LifespanControllerTest.php +++ b/tests/app/Controller/LifespanControllerTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class LifespanControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\LifespanController')); diff --git a/tests/app/Controller/MediaControllerTest.php b/tests/app/Controller/MediaControllerTest.php index f4ab5df797..e1528b2ae0 100644 --- a/tests/app/Controller/MediaControllerTest.php +++ b/tests/app/Controller/MediaControllerTest.php @@ -24,8 +24,6 @@ use PHPUnit_Framework_TestCase; class MediaControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { defined('WT_ROOT') || define('WT_ROOT', ''); @@ -33,8 +31,6 @@ class MediaControllerTest extends PHPUnit_Framework_TestCase { /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\MediaController')); diff --git a/tests/app/Controller/NoteControllerTest.php b/tests/app/Controller/NoteControllerTest.php index c515829b7e..e0bb7250eb 100644 --- a/tests/app/Controller/NoteControllerTest.php +++ b/tests/app/Controller/NoteControllerTest.php @@ -24,8 +24,6 @@ use PHPUnit_Framework_TestCase; class NoteControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { defined('WT_ROOT') || define('WT_ROOT', ''); @@ -33,8 +31,6 @@ class NoteControllerTest extends PHPUnit_Framework_TestCase { /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\NoteController')); diff --git a/tests/app/Controller/PageControllerTest.php b/tests/app/Controller/PageControllerTest.php index bc978f5018..8e1918fd3c 100644 --- a/tests/app/Controller/PageControllerTest.php +++ b/tests/app/Controller/PageControllerTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class PageControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\PageController')); diff --git a/tests/app/Controller/PedigreeControllerTest.php b/tests/app/Controller/PedigreeControllerTest.php index b95c08b9f1..180c76d329 100644 --- a/tests/app/Controller/PedigreeControllerTest.php +++ b/tests/app/Controller/PedigreeControllerTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class PedigreeControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\PedigreeController')); diff --git a/tests/app/Controller/RepositoryControllerTest.php b/tests/app/Controller/RepositoryControllerTest.php index e7a337eea2..2074f81d47 100644 --- a/tests/app/Controller/RepositoryControllerTest.php +++ b/tests/app/Controller/RepositoryControllerTest.php @@ -24,8 +24,6 @@ use PHPUnit_Framework_TestCase; class RepositoryControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { defined('WT_ROOT') || define('WT_ROOT', ''); @@ -33,8 +31,6 @@ class RepositoryControllerTest extends PHPUnit_Framework_TestCase { /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\RepositoryController')); diff --git a/tests/app/Controller/SearchControllerTest.php b/tests/app/Controller/SearchControllerTest.php index b690f6544e..bfda39b93e 100644 --- a/tests/app/Controller/SearchControllerTest.php +++ b/tests/app/Controller/SearchControllerTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class SearchControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\SearchController')); diff --git a/tests/app/Controller/SimpleControllerTest.php b/tests/app/Controller/SimpleControllerTest.php index b476d46306..6f45efc449 100644 --- a/tests/app/Controller/SimpleControllerTest.php +++ b/tests/app/Controller/SimpleControllerTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class SimpleControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\SimpleController')); diff --git a/tests/app/Controller/SourceControllerTest.php b/tests/app/Controller/SourceControllerTest.php index aa53eb56f9..6f8680e621 100644 --- a/tests/app/Controller/SourceControllerTest.php +++ b/tests/app/Controller/SourceControllerTest.php @@ -24,8 +24,6 @@ use PHPUnit_Framework_TestCase; class SourceControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { defined('WT_ROOT') || define('WT_ROOT', ''); @@ -33,8 +31,6 @@ class SourceControllerTest extends PHPUnit_Framework_TestCase { /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\SourceController')); diff --git a/tests/app/Controller/TimelineControllerTest.php b/tests/app/Controller/TimelineControllerTest.php index b340615f03..e112c6dd19 100644 --- a/tests/app/Controller/TimelineControllerTest.php +++ b/tests/app/Controller/TimelineControllerTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class TimelineControllerTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\TimelineController')); diff --git a/tests/app/DatabaseTest.php b/tests/app/DatabaseTest.php index 22a05109cf..9b89c08828 100644 --- a/tests/app/DatabaseTest.php +++ b/tests/app/DatabaseTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class DatabaseTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\Database')); diff --git a/tests/app/Date/CalendarDateTest.php b/tests/app/Date/CalendarDateTest.php index efb2a1184f..754d090717 100644 --- a/tests/app/Date/CalendarDateTest.php +++ b/tests/app/Date/CalendarDateTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class CalendarDateTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\CalendarDate')); diff --git a/tests/app/Date/FrenchDateTest.php b/tests/app/Date/FrenchDateTest.php index 7ea38188b8..935decbeff 100644 --- a/tests/app/Date/FrenchDateTest.php +++ b/tests/app/Date/FrenchDateTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FrenchDateTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\FrenchDate')); diff --git a/tests/app/Date/GregorianDateTest.php b/tests/app/Date/GregorianDateTest.php index 397e4b381b..ffeecbfc40 100644 --- a/tests/app/Date/GregorianDateTest.php +++ b/tests/app/Date/GregorianDateTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class GregorianDateTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\GregorianDate')); diff --git a/tests/app/Date/HijriDateTest.php b/tests/app/Date/HijriDateTest.php index c81988f014..b8836f1507 100644 --- a/tests/app/Date/HijriDateTest.php +++ b/tests/app/Date/HijriDateTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class HijriDateTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\HijriDate')); diff --git a/tests/app/Date/JalaliDateTest.php b/tests/app/Date/JalaliDateTest.php index 532d3b6f77..56f6c927c4 100644 --- a/tests/app/Date/JalaliDateTest.php +++ b/tests/app/Date/JalaliDateTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class JalaliDateTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\JalaliDate')); diff --git a/tests/app/Date/JewishDateTest.php b/tests/app/Date/JewishDateTest.php index a27e61612a..655b3c3770 100644 --- a/tests/app/Date/JewishDateTest.php +++ b/tests/app/Date/JewishDateTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class JewishDateTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\JewishDate')); diff --git a/tests/app/Date/JulianDateTest.php b/tests/app/Date/JulianDateTest.php index 8ebc5538ca..6de50652ce 100644 --- a/tests/app/Date/JulianDateTest.php +++ b/tests/app/Date/JulianDateTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class JulianDateTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\JulianDate')); diff --git a/tests/app/Date/RomanDateTest.php b/tests/app/Date/RomanDateTest.php index 0801c4ff65..a883f647c5 100644 --- a/tests/app/Date/RomanDateTest.php +++ b/tests/app/Date/RomanDateTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class RomanDateTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\RomanDate')); diff --git a/tests/app/DateTest.php b/tests/app/DateTest.php index 158bc5fa67..e15599bbbd 100644 --- a/tests/app/DateTest.php +++ b/tests/app/DateTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class DateTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\Date')); diff --git a/tests/app/FactTest.php b/tests/app/FactTest.php index a928efcb39..481a2e1308 100644 --- a/tests/app/FactTest.php +++ b/tests/app/FactTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FactTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\Fact')); diff --git a/tests/app/FamilyTest.php b/tests/app/FamilyTest.php index e247315a6a..42b31dfd12 100644 --- a/tests/app/FamilyTest.php +++ b/tests/app/FamilyTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FamilyTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\Family')); diff --git a/tests/app/FileTest.php b/tests/app/FileTest.php index c94adaa912..23c3b684da 100644 --- a/tests/app/FileTest.php +++ b/tests/app/FileTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FileTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\File')); diff --git a/tests/app/FilterTest.php b/tests/app/FilterTest.php index c055afd512..a5f67dae0f 100644 --- a/tests/app/FilterTest.php +++ b/tests/app/FilterTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FilterTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\Filter')); diff --git a/tests/app/FlashMessagesTest.php b/tests/app/FlashMessagesTest.php index 7165c13e0c..434a2f5603 100644 --- a/tests/app/FlashMessagesTest.php +++ b/tests/app/FlashMessagesTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FlashMessagesTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\FlashMessages')); diff --git a/tests/app/Gedcom/GedcomCodeAdopTest.php b/tests/app/Gedcom/GedcomCodeAdopTest.php index eb3f4d91e9..068614ee23 100644 --- a/tests/app/Gedcom/GedcomCodeAdopTest.php +++ b/tests/app/Gedcom/GedcomCodeAdopTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class GedcomCodeAdopTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\GedcomCodeAdop')); diff --git a/tests/app/Gedcom/GedcomCodeNameTest.php b/tests/app/Gedcom/GedcomCodeNameTest.php index 07f3e98efe..18f45a1363 100644 --- a/tests/app/Gedcom/GedcomCodeNameTest.php +++ b/tests/app/Gedcom/GedcomCodeNameTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class GedcomCodeNameTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\GedcomCodePedi')); diff --git a/tests/app/Gedcom/GedcomCodePediTest.php b/tests/app/Gedcom/GedcomCodePediTest.php index e4e4541d8f..a6d51e9c34 100644 --- a/tests/app/Gedcom/GedcomCodePediTest.php +++ b/tests/app/Gedcom/GedcomCodePediTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class GedcomCodePediTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\GedcomCodePedi')); diff --git a/tests/app/Gedcom/GedcomCodeQuayTest.php b/tests/app/Gedcom/GedcomCodeQuayTest.php index 55d9062bb2..e3790f6dfb 100644 --- a/tests/app/Gedcom/GedcomCodeQuayTest.php +++ b/tests/app/Gedcom/GedcomCodeQuayTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class GedcomCodeQuayTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\GedcomCodeQuay')); diff --git a/tests/app/Gedcom/GedcomCodeRelaTest.php b/tests/app/Gedcom/GedcomCodeRelaTest.php index 759cb68778..d41cfa05fd 100644 --- a/tests/app/Gedcom/GedcomCodeRelaTest.php +++ b/tests/app/Gedcom/GedcomCodeRelaTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class GedcomCodeRelaTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\GedcomCodeRela')); diff --git a/tests/app/Gedcom/GedcomCodeStatTest.php b/tests/app/Gedcom/GedcomCodeStatTest.php index 8248a447ae..b55dafc6d1 100644 --- a/tests/app/Gedcom/GedcomCodeStatTest.php +++ b/tests/app/Gedcom/GedcomCodeStatTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class GedcomCodeStatTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\GedcomCodeStat')); diff --git a/tests/app/Gedcom/GedcomCodeTempTest.php b/tests/app/Gedcom/GedcomCodeTempTest.php index 8ec0990b99..a76c57341d 100644 --- a/tests/app/Gedcom/GedcomCodeTempTest.php +++ b/tests/app/Gedcom/GedcomCodeTempTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class GedcomCodeTempTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\GedcomCodeTemp')); diff --git a/tests/app/Gedcom/GedcomTagTest.php b/tests/app/Gedcom/GedcomTagTest.php index b37a3589cf..80f6443863 100644 --- a/tests/app/Gedcom/GedcomTagTest.php +++ b/tests/app/Gedcom/GedcomTagTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class GedcomTagTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\GedcomTag')); diff --git a/tests/app/GedcomRecordTest.php b/tests/app/GedcomRecordTest.php index 8b216590cd..63bb057a1d 100644 --- a/tests/app/GedcomRecordTest.php +++ b/tests/app/GedcomRecordTest.php @@ -24,17 +24,13 @@ use PHPUnit_Framework_TestCase; class GedcomRecordTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** - /** + /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\GedcomRecord')); diff --git a/tests/app/I18NTest.php b/tests/app/I18NTest.php index e4ee0f11af..ba99484c3a 100644 --- a/tests/app/I18NTest.php +++ b/tests/app/I18NTest.php @@ -24,8 +24,6 @@ use PHPUnit_Framework_TestCase; class I18NTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { \Patchwork\Utf8\Bootup::initAll(); @@ -41,8 +39,6 @@ class I18NTest extends PHPUnit_Framework_TestCase { * Test I18N::strtoupper() * * @todo test all locales - * - * @return void */ public function testStrtoupper() { $this->assertSame(I18N::strtoupper(''), ''); @@ -53,8 +49,6 @@ class I18NTest extends PHPUnit_Framework_TestCase { * Test I18N::strtolower() * * @todo test all locales - * - * @return void */ public function testStrtolower() { $this->assertSame(I18N::strtolower(''), ''); @@ -65,8 +59,6 @@ class I18NTest extends PHPUnit_Framework_TestCase { * Test I18N::strcasecmp() * * @todo test all locales - * - * @return void */ public function testStrcasecmp() { $this->assertSame(I18N::strcasecmp('', ''), 0); @@ -79,8 +71,6 @@ class I18NTest extends PHPUnit_Framework_TestCase { /** * Test I18N::reverseText() - * - * @return void */ public function testReverseText() { // Create these strings carefully, as text editors can display them in confusing ways. @@ -103,8 +93,6 @@ class I18NTest extends PHPUnit_Framework_TestCase { /** * Test I18N::languageName() - * - * @return void */ public function testKnownLanguageName() { $this->assertSame('العربية', I18N::languageName('ar')); @@ -116,8 +104,6 @@ class I18NTest extends PHPUnit_Framework_TestCase { /** * Test I18N::languageScript() - * - * @return void */ public function testLanguageScript() { $this->assertSame('Arab', I18N::languageScript('ar')); diff --git a/tests/app/IndividualTest.php b/tests/app/IndividualTest.php index a8bdc132eb..9e5439a580 100644 --- a/tests/app/IndividualTest.php +++ b/tests/app/IndividualTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class IndividualTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\Individual')); diff --git a/tests/app/LogTest.php b/tests/app/LogTest.php index e9228efa12..b7cbeb97bd 100644 --- a/tests/app/LogTest.php +++ b/tests/app/LogTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class LogTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\Log')); diff --git a/tests/app/MailTest.php b/tests/app/MailTest.php index 9f37e5eba1..aa70712d14 100644 --- a/tests/app/MailTest.php +++ b/tests/app/MailTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class MailTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\Mail')); diff --git a/tests/app/MediaTest.php b/tests/app/MediaTest.php index 230f1c1658..c6696e2fb7 100644 --- a/tests/app/MediaTest.php +++ b/tests/app/MediaTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class MediaTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\Media')); diff --git a/tests/app/MenuTest.php b/tests/app/MenuTest.php index 8b069768d8..e85510bd9b 100644 --- a/tests/app/MenuTest.php +++ b/tests/app/MenuTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class MenuTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests. - * - * @return void */ public function setUp() { } /** * Test the constructor with default parameters. - * - * @return void */ public function testConstructorDefaults() { $menu = new Menu('Test!'); @@ -47,12 +43,10 @@ class MenuTest extends PHPUnit_Framework_TestCase { /** * Test the constructor with non-default parameters. - * - * @return void */ public function testConstructorNonDefaults() { $submenus = array(new Menu('Submenu')); - $menu = new Menu('Test!', 'link.html', 'link-class', 'test();', $submenus); + $menu = new Menu('Test!', 'link.html', 'link-class', 'test();', $submenus); $this->assertSame('Test!', $menu->getLabel()); $this->assertSame('link.html', $menu->getLink()); @@ -63,8 +57,6 @@ class MenuTest extends PHPUnit_Framework_TestCase { /** * Test the getter/setter for the label. - * - * @return void */ public function testGetterSetterLabel() { $menu = new Menu('Test!'); @@ -77,8 +69,6 @@ class MenuTest extends PHPUnit_Framework_TestCase { /** * Test the getter/setter for the link. - * - * @return void */ public function testGetterSetterLink() { $menu = new Menu('Test!'); @@ -91,8 +81,6 @@ class MenuTest extends PHPUnit_Framework_TestCase { /** * Test the getter/setter for the ID. - * - * @return void */ public function testGetterSetterId() { $menu = new Menu('Test!'); @@ -105,8 +93,6 @@ class MenuTest extends PHPUnit_Framework_TestCase { /** * Test the getter/setter for the Onclick event. - * - * @return void */ public function testGetterSetterOnclick() { $menu = new Menu('Test!'); @@ -119,11 +105,9 @@ class MenuTest extends PHPUnit_Framework_TestCase { /** * Test the getter/setter for the submenus. - * - * @return void */ public function testGetterSetterSubmenus() { - $menu = new Menu('Test!'); + $menu = new Menu('Test!'); $submenus = array( new Menu('Sub1'), new Menu('Sub2'), @@ -137,19 +121,15 @@ class MenuTest extends PHPUnit_Framework_TestCase { /** * Test the string cast. - * - * @return void */ public function testStringCast() { $menu = new Menu('Test!'); - $this->assertSame((string)$menu, $menu->getMenuAsList()); + $this->assertSame((string) $menu, $menu->getMenuAsList()); } /** * Test the list rendering for a simple link. - * - * @return void */ public function testFormatAsList() { $menu = new Menu('Test!', 'link.html'); @@ -159,8 +139,6 @@ class MenuTest extends PHPUnit_Framework_TestCase { /** * Test the list rendering for a simple link with a CSS ID. - * - * @return void */ public function testFormatAsListWithClass() { $menu = new Menu('Test!', 'link.html', 'link-class'); @@ -170,8 +148,6 @@ class MenuTest extends PHPUnit_Framework_TestCase { /** * Test the list rendering for an empty target. - * - * @return void */ public function testFormatAsListWithNoTarget() { $menu = new Menu('Test!', ''); @@ -181,8 +157,6 @@ class MenuTest extends PHPUnit_Framework_TestCase { /** * Test the list rendering for a default (hash) target. - * - * @return void */ public function testFormatAsListWithHashTarget() { $menu = new Menu('Test!'); @@ -192,8 +166,6 @@ class MenuTest extends PHPUnit_Framework_TestCase { /** * Test the list rendering for an onclick link. - * - * @return void */ public function testFormatAsListWithOnclick() { $menu = new Menu('Test!', '#', '', 'return test();'); @@ -203,8 +175,6 @@ class MenuTest extends PHPUnit_Framework_TestCase { /** * Test the list rendering for an onclick link. - * - * @return void */ public function testFormatAsListWithOnclickAndId() { $menu = new Menu('Test!', '#', 'link-class', 'return test();'); diff --git a/tests/app/Module/AhnentafelReportModuleTest.php b/tests/app/Module/AhnentafelReportModuleTest.php index eefefbe681..bef6c09695 100644 --- a/tests/app/Module/AhnentafelReportModuleTest.php +++ b/tests/app/Module/AhnentafelReportModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class AhnentafelReportModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\AhnentafelReportModule')); diff --git a/tests/app/Module/AlbumModuleTest.php b/tests/app/Module/AlbumModuleTest.php index aeabd9102b..b16f19ff55 100644 --- a/tests/app/Module/AlbumModuleTest.php +++ b/tests/app/Module/AlbumModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class AlbumModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\AlbumModule')); diff --git a/tests/app/Module/BatchUpdate/BatchUpdateBasePluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateBasePluginTest.php index a80e16cd99..dd5b9aaf95 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateBasePluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateBasePluginTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class BatchUpdateBasePluginTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\BatchUpdateBasePlugin')); diff --git a/tests/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.php index 0f280f8739..3091bd4bb8 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateDuplicateLinksPluginTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class BatchUpdateDuplicateLinksPluginTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\BatchUpdateDuplicateLinksPlugin')); diff --git a/tests/app/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.php index 5ffec16929..33dfb56456 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateMarriedNamesPluginTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class BatchUpdateMarriedNamesPluginTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\BatchUpdateMarriedNamesPlugin')); diff --git a/tests/app/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.php index 7d25e97bda..8420878b2c 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateMissingDeathPluginTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class BatchUpdateMissingDeathPluginTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\BatchUpdateMissingDeathPlugin')); diff --git a/tests/app/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.php index 9facdc6747..6d72099493 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateNameFormatPluginTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class BatchUpdateNameFormatPluginTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\BatchUpdateNameFormatPlugin')); diff --git a/tests/app/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.php b/tests/app/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.php index 5a65583507..3c11cae7f8 100644 --- a/tests/app/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.php +++ b/tests/app/Module/BatchUpdate/BatchUpdateSearchReplacePluginTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class BatchUpdateSearchReplacePluginTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\BatchUpdateSearchReplacePlugin')); diff --git a/tests/app/Module/BatchUpdate/BirthDeathMarriageReportModuleTest.php b/tests/app/Module/BatchUpdate/BirthDeathMarriageReportModuleTest.php index 3c65558caf..15032f702c 100644 --- a/tests/app/Module/BatchUpdate/BirthDeathMarriageReportModuleTest.php +++ b/tests/app/Module/BatchUpdate/BirthDeathMarriageReportModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class BirthDeathMarriageReportModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\BirthDeathMarriageReportModule')); diff --git a/tests/app/Module/BatchUpdateModuleTest.php b/tests/app/Module/BatchUpdateModuleTest.php index 8a1027ea2a..eef26f0109 100644 --- a/tests/app/Module/BatchUpdateModuleTest.php +++ b/tests/app/Module/BatchUpdateModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class BatchUpdateModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\BatchUpdateModule')); diff --git a/tests/app/Module/BirthReportModuleTest.php b/tests/app/Module/BirthReportModuleTest.php index 8def207a58..d89b10680a 100644 --- a/tests/app/Module/BirthReportModuleTest.php +++ b/tests/app/Module/BirthReportModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class BirthReportModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\BirthReportModule')); diff --git a/tests/app/Module/CemeteryReportModuleTest.php b/tests/app/Module/CemeteryReportModuleTest.php index 288e3e0258..f817f4fe62 100644 --- a/tests/app/Module/CemeteryReportModuleTest.php +++ b/tests/app/Module/CemeteryReportModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class CemeteryReportModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\CemeteryReportModule')); diff --git a/tests/app/Module/CensusAssistantModuleTest.php b/tests/app/Module/CensusAssistantModuleTest.php index 6a86f42ec0..3fe6469a36 100644 --- a/tests/app/Module/CensusAssistantModuleTest.php +++ b/tests/app/Module/CensusAssistantModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class CensusAssistantModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\CensusAssistantModule')); diff --git a/tests/app/Module/ChangeReportModuleTest.php b/tests/app/Module/ChangeReportModuleTest.php index c26b590527..d1c58aa56e 100644 --- a/tests/app/Module/ChangeReportModuleTest.php +++ b/tests/app/Module/ChangeReportModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class ChangeReportModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\ChangeReportModule')); diff --git a/tests/app/Module/ChartsBlockModuleTest.php b/tests/app/Module/ChartsBlockModuleTest.php index e121a9c9e2..ca80a438c1 100644 --- a/tests/app/Module/ChartsBlockModuleTest.php +++ b/tests/app/Module/ChartsBlockModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class ChartsBlockModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\ChartsBlockModule')); diff --git a/tests/app/Module/CkeditorModuleTest.php b/tests/app/Module/CkeditorModuleTest.php index 18ee5cee3d..1cef3402f4 100644 --- a/tests/app/Module/CkeditorModuleTest.php +++ b/tests/app/Module/CkeditorModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class CkeditorModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\CkeditorModule')); diff --git a/tests/app/Module/ClippingsCart/ClippingsCartTest.php b/tests/app/Module/ClippingsCart/ClippingsCartTest.php index 6052b892e5..83835a3146 100644 --- a/tests/app/Module/ClippingsCart/ClippingsCartTest.php +++ b/tests/app/Module/ClippingsCart/ClippingsCartTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class ClippingsCartTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\ClippingsCart')); diff --git a/tests/app/Module/ClippingsCartModuleTest.php b/tests/app/Module/ClippingsCartModuleTest.php index 6c0cdbb7cd..316427827a 100644 --- a/tests/app/Module/ClippingsCartModuleTest.php +++ b/tests/app/Module/ClippingsCartModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class ClippingsCartModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\ClippingsCartModule')); diff --git a/tests/app/Module/DeathReportModuleTest.php b/tests/app/Module/DeathReportModuleTest.php index 6306ad188c..e04eff93a4 100644 --- a/tests/app/Module/DeathReportModuleTest.php +++ b/tests/app/Module/DeathReportModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class DeathReportModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\DeathReportModule')); diff --git a/tests/app/Module/DescendancyModuleTest.php b/tests/app/Module/DescendancyModuleTest.php index 5d6cadb9fd..252f4a3617 100644 --- a/tests/app/Module/DescendancyModuleTest.php +++ b/tests/app/Module/DescendancyModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class DescendancyModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\DescendancyModule')); diff --git a/tests/app/Module/DescendancyReportModuleTest.php b/tests/app/Module/DescendancyReportModuleTest.php index 6449740efc..58b68ab758 100644 --- a/tests/app/Module/DescendancyReportModuleTest.php +++ b/tests/app/Module/DescendancyReportModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class DescendancyReportModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\DescendancyReportModule')); diff --git a/tests/app/Module/ExtraInformationModuleTest.php b/tests/app/Module/ExtraInformationModuleTest.php index b062422a2d..533825d9a2 100644 --- a/tests/app/Module/ExtraInformationModuleTest.php +++ b/tests/app/Module/ExtraInformationModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class ExtraInformationModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\ExtraInformationModule')); diff --git a/tests/app/Module/FactSourcesReportModuleTest.php b/tests/app/Module/FactSourcesReportModuleTest.php index 044d6c4c07..4d87f901a2 100644 --- a/tests/app/Module/FactSourcesReportModuleTest.php +++ b/tests/app/Module/FactSourcesReportModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FactSourcesReportModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\FactSourcesReportModule')); diff --git a/tests/app/Module/FamiliesSidebarModuleTest.php b/tests/app/Module/FamiliesSidebarModuleTest.php index d70676a204..2c163a2b8e 100644 --- a/tests/app/Module/FamiliesSidebarModuleTest.php +++ b/tests/app/Module/FamiliesSidebarModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FamiliesSidebarModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\FamiliesSidebarModule')); diff --git a/tests/app/Module/FamilyGroupReportModuleTest.php b/tests/app/Module/FamilyGroupReportModuleTest.php index 6ad7184a77..bde467a611 100644 --- a/tests/app/Module/FamilyGroupReportModuleTest.php +++ b/tests/app/Module/FamilyGroupReportModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FamilyGroupReportModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\FamilyGroupReportModule')); diff --git a/tests/app/Module/FamilyNavigatorModuleTest.php b/tests/app/Module/FamilyNavigatorModuleTest.php index 0f234fd8fa..5ba0073386 100644 --- a/tests/app/Module/FamilyNavigatorModuleTest.php +++ b/tests/app/Module/FamilyNavigatorModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FamilyNavigatorModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\FamilyNavigatorModule')); diff --git a/tests/app/Module/FamilyTreeFavoritesModuleTest.php b/tests/app/Module/FamilyTreeFavoritesModuleTest.php index 20da27f783..27c128b121 100644 --- a/tests/app/Module/FamilyTreeFavoritesModuleTest.php +++ b/tests/app/Module/FamilyTreeFavoritesModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FamilyTreeFavoritesModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\FamilyTreeFavoritesModule')); diff --git a/tests/app/Module/FamilyTreeNewsModuleTest.php b/tests/app/Module/FamilyTreeNewsModuleTest.php index 9f4999b69e..bf60846801 100644 --- a/tests/app/Module/FamilyTreeNewsModuleTest.php +++ b/tests/app/Module/FamilyTreeNewsModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FamilyTreeNewsModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\FamilyTreeNewsModule')); diff --git a/tests/app/Module/FamilyTreeStatisticsModuleTest.php b/tests/app/Module/FamilyTreeStatisticsModuleTest.php index bf180a4b09..5efd0c1d43 100644 --- a/tests/app/Module/FamilyTreeStatisticsModuleTest.php +++ b/tests/app/Module/FamilyTreeStatisticsModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FamilyTreeStatisticsModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\FamilyTreeStatisticsModule')); diff --git a/tests/app/Module/FrequentlyAskedQuestionsModuleTest.php b/tests/app/Module/FrequentlyAskedQuestionsModuleTest.php index 39d8061c5a..0aa0b97cfb 100644 --- a/tests/app/Module/FrequentlyAskedQuestionsModuleTest.php +++ b/tests/app/Module/FrequentlyAskedQuestionsModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FrequentlyAskedQuestionsModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\FrequentlyAskedQuestionsModule')); diff --git a/tests/app/Module/GoogleMapsModuleTest.php b/tests/app/Module/GoogleMapsModuleTest.php index 8db17eec10..acddaa3f72 100644 --- a/tests/app/Module/GoogleMapsModuleTest.php +++ b/tests/app/Module/GoogleMapsModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class GoogleMapsModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\GoogleMapsModule')); diff --git a/tests/app/Module/HtmlBlockModuleTest.php b/tests/app/Module/HtmlBlockModuleTest.php index e10784d00e..37af7e5d71 100644 --- a/tests/app/Module/HtmlBlockModuleTest.php +++ b/tests/app/Module/HtmlBlockModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class HtmlBlockModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\HtmlBlockModule')); diff --git a/tests/app/Module/IndividualFactsTabModuleTest.php b/tests/app/Module/IndividualFactsTabModuleTest.php index 87829c257e..7f11370cfb 100644 --- a/tests/app/Module/IndividualFactsTabModuleTest.php +++ b/tests/app/Module/IndividualFactsTabModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class IndividualFactsTabModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\IndividualFactsTabModule')); diff --git a/tests/app/Module/IndividualFamiliesReportModuleTest.php b/tests/app/Module/IndividualFamiliesReportModuleTest.php index 4ac33fb0b5..ed1f62ac32 100644 --- a/tests/app/Module/IndividualFamiliesReportModuleTest.php +++ b/tests/app/Module/IndividualFamiliesReportModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class IndividualFamiliesReportModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\IndividualFamiliesReportModule')); diff --git a/tests/app/Module/IndividualReportModuleTest.php b/tests/app/Module/IndividualReportModuleTest.php index e83ec6e07a..5200140c80 100644 --- a/tests/app/Module/IndividualReportModuleTest.php +++ b/tests/app/Module/IndividualReportModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class IndividualReportModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\IndividualReportModule')); diff --git a/tests/app/Module/IndividualSidebarModuleTest.php b/tests/app/Module/IndividualSidebarModuleTest.php index 3420804355..eb20862f7f 100644 --- a/tests/app/Module/IndividualSidebarModuleTest.php +++ b/tests/app/Module/IndividualSidebarModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class IndividualSidebarModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\IndividualSidebarModule')); diff --git a/tests/app/Module/InteractiveTree/TreeViewTest.php b/tests/app/Module/InteractiveTree/TreeViewTest.php index e96af436e2..6dd11d085c 100644 --- a/tests/app/Module/InteractiveTree/TreeViewTest.php +++ b/tests/app/Module/InteractiveTree/TreeViewTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class TreeViewTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\TreeView')); diff --git a/tests/app/Module/InteractiveTreeModuleTest.php b/tests/app/Module/InteractiveTreeModuleTest.php index f58a114260..d978928479 100644 --- a/tests/app/Module/InteractiveTreeModuleTest.php +++ b/tests/app/Module/InteractiveTreeModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class InteractiveTreeModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\InteractiveTreeModule')); diff --git a/tests/app/Module/LoggedInUsersModuleTest.php b/tests/app/Module/LoggedInUsersModuleTest.php index 63d484220b..e378c5c754 100644 --- a/tests/app/Module/LoggedInUsersModuleTest.php +++ b/tests/app/Module/LoggedInUsersModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class LoggedInUsersModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\LoggedInUsersModule')); diff --git a/tests/app/Module/MarriageReportModuleTest.php b/tests/app/Module/MarriageReportModuleTest.php index f7118c3d1a..c50ab3d8d0 100644 --- a/tests/app/Module/MarriageReportModuleTest.php +++ b/tests/app/Module/MarriageReportModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class MarriageReportModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\MarriageReportModule')); diff --git a/tests/app/Module/MediaTabModuleTest.php b/tests/app/Module/MediaTabModuleTest.php index d92859edb8..2d28e7877b 100644 --- a/tests/app/Module/MediaTabModuleTest.php +++ b/tests/app/Module/MediaTabModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class MediaTabModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\MediaTabModule')); diff --git a/tests/app/Module/MissingFactsReportModuleTest.php b/tests/app/Module/MissingFactsReportModuleTest.php index 1829a6b106..98d7067b82 100644 --- a/tests/app/Module/MissingFactsReportModuleTest.php +++ b/tests/app/Module/MissingFactsReportModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class MissingFactsReportModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\MissingFactsReportModule')); diff --git a/tests/app/Module/ModuleBlockInterfaceTest.php b/tests/app/Module/ModuleBlockInterfaceTest.php index ad98d992d0..bff2d7a7f3 100644 --- a/tests/app/Module/ModuleBlockInterfaceTest.php +++ b/tests/app/Module/ModuleBlockInterfaceTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class ModuleBlockInterfaceTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(interface_exists(__NAMESPACE__ . '\ModuleBlockInterface')); diff --git a/tests/app/Module/ModuleChartInterfaceTest.php b/tests/app/Module/ModuleChartInterfaceTest.php index 7e9efd007d..fafba3d7c0 100644 --- a/tests/app/Module/ModuleChartInterfaceTest.php +++ b/tests/app/Module/ModuleChartInterfaceTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class ModuleChartInterfaceTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(interface_exists(__NAMESPACE__ . '\ModuleChartInterface')); diff --git a/tests/app/Module/ModuleConfigInterfaceTest.php b/tests/app/Module/ModuleConfigInterfaceTest.php index 3303062a32..2f9e84e09b 100644 --- a/tests/app/Module/ModuleConfigInterfaceTest.php +++ b/tests/app/Module/ModuleConfigInterfaceTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class ModuleConfigInterfaceTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(interface_exists(__NAMESPACE__ . '\ModuleConfigInterface')); diff --git a/tests/app/Module/ModuleMenuInterfaceTest.php b/tests/app/Module/ModuleMenuInterfaceTest.php index 8713e99d1d..28dc37393e 100644 --- a/tests/app/Module/ModuleMenuInterfaceTest.php +++ b/tests/app/Module/ModuleMenuInterfaceTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class ModuleMenuInterfaceTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(interface_exists(__NAMESPACE__ . '\ModuleMenuInterface')); diff --git a/tests/app/Module/ModuleReportInterfaceTest.php b/tests/app/Module/ModuleReportInterfaceTest.php index 43ee8128f2..eb0655d0b9 100644 --- a/tests/app/Module/ModuleReportInterfaceTest.php +++ b/tests/app/Module/ModuleReportInterfaceTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class ModuleReportInterfaceTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(interface_exists(__NAMESPACE__ . '\ModuleReportInterface')); diff --git a/tests/app/Module/ModuleSidebarInterfaceTest.php b/tests/app/Module/ModuleSidebarInterfaceTest.php index 92cfb55fb7..49fc8e9179 100644 --- a/tests/app/Module/ModuleSidebarInterfaceTest.php +++ b/tests/app/Module/ModuleSidebarInterfaceTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class ModuleSidebarInterfaceTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(interface_exists(__NAMESPACE__ . '\ModuleSidebarInterface')); diff --git a/tests/app/Module/ModuleTabInterfaceTest.php b/tests/app/Module/ModuleTabInterfaceTest.php index a49085def0..d6ed2d3cc4 100644 --- a/tests/app/Module/ModuleTabInterfaceTest.php +++ b/tests/app/Module/ModuleTabInterfaceTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class ModuleTabInterfaceTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(interface_exists(__NAMESPACE__ . '\ModuleTabInterface')); diff --git a/tests/app/Module/ModuleThemeInterfaceTest.php b/tests/app/Module/ModuleThemeInterfaceTest.php index 8afd0eeda2..ff9861136e 100644 --- a/tests/app/Module/ModuleThemeInterfaceTest.php +++ b/tests/app/Module/ModuleThemeInterfaceTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class ModuleThemeInterfaceTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(interface_exists(__NAMESPACE__ . '\ModuleThemeInterface')); diff --git a/tests/app/Module/NotesTabModuleTest.php b/tests/app/Module/NotesTabModuleTest.php index dd7824ba4e..d063480d0b 100644 --- a/tests/app/Module/NotesTabModuleTest.php +++ b/tests/app/Module/NotesTabModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class NotesTabModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\NotesTabModule')); diff --git a/tests/app/Module/OccupationReportModuleTest.php b/tests/app/Module/OccupationReportModuleTest.php index bf83baa238..e4a9300051 100644 --- a/tests/app/Module/OccupationReportModuleTest.php +++ b/tests/app/Module/OccupationReportModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class OccupationReportModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\OccupationReportModule')); diff --git a/tests/app/Module/OnThisDayModuleTest.php b/tests/app/Module/OnThisDayModuleTest.php index 59997717db..a00c66653c 100644 --- a/tests/app/Module/OnThisDayModuleTest.php +++ b/tests/app/Module/OnThisDayModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class OnThisDayModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\OnThisDayModule')); diff --git a/tests/app/Module/PageMenuModuleTest.php b/tests/app/Module/PageMenuModuleTest.php index c977507cd2..86635d9e4d 100644 --- a/tests/app/Module/PageMenuModuleTest.php +++ b/tests/app/Module/PageMenuModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class PageMenuModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\PageMenuModule')); diff --git a/tests/app/Module/PedigreeReportModuleTest.php b/tests/app/Module/PedigreeReportModuleTest.php index df6df2bd77..7c44440217 100644 --- a/tests/app/Module/PedigreeReportModuleTest.php +++ b/tests/app/Module/PedigreeReportModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class PedigreeReportModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\PedigreeReportModule')); diff --git a/tests/app/Module/RecentChangesModuleTest.php b/tests/app/Module/RecentChangesModuleTest.php index d8eeeab64c..bb49446d66 100644 --- a/tests/app/Module/RecentChangesModuleTest.php +++ b/tests/app/Module/RecentChangesModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class RecentChangesModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\RecentChangesModule')); diff --git a/tests/app/Module/RelatedIndividualsReportModuleTest.php b/tests/app/Module/RelatedIndividualsReportModuleTest.php index a4d4f9f8fc..a6a491e8ff 100644 --- a/tests/app/Module/RelatedIndividualsReportModuleTest.php +++ b/tests/app/Module/RelatedIndividualsReportModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class RelatedIndividualsReportModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\RelatedIndividualsReportModule')); diff --git a/tests/app/Module/RelativesTabModuleTest.php b/tests/app/Module/RelativesTabModuleTest.php index f3523dd48b..b3acc47727 100644 --- a/tests/app/Module/RelativesTabModuleTest.php +++ b/tests/app/Module/RelativesTabModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class RelativesTabModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\RelativesTabModule')); diff --git a/tests/app/Module/ResearchTaskModuleTest.php b/tests/app/Module/ResearchTaskModuleTest.php index 59628192de..f66d670479 100644 --- a/tests/app/Module/ResearchTaskModuleTest.php +++ b/tests/app/Module/ResearchTaskModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class ResearchTaskModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\ResearchTaskModule')); diff --git a/tests/app/Module/ReviewChangesModuleTest.php b/tests/app/Module/ReviewChangesModuleTest.php index 1dc0a0109a..f9b05b648c 100644 --- a/tests/app/Module/ReviewChangesModuleTest.php +++ b/tests/app/Module/ReviewChangesModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class ReviewChangesModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\ReviewChangesModule')); diff --git a/tests/app/Module/SiteMapModuleTest.php b/tests/app/Module/SiteMapModuleTest.php index 9eaf1de328..2429948548 100644 --- a/tests/app/Module/SiteMapModuleTest.php +++ b/tests/app/Module/SiteMapModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class SiteMapModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\SiteMapModule')); diff --git a/tests/app/Module/SlideShowModuleTest.php b/tests/app/Module/SlideShowModuleTest.php index 66037e6a6e..fd136eb0bb 100644 --- a/tests/app/Module/SlideShowModuleTest.php +++ b/tests/app/Module/SlideShowModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class SlideShowModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\SlideShowModule')); diff --git a/tests/app/Module/SourcesTabModuleTest.php b/tests/app/Module/SourcesTabModuleTest.php index 6711de28fb..e785af9449 100644 --- a/tests/app/Module/SourcesTabModuleTest.php +++ b/tests/app/Module/SourcesTabModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class SourcesTabModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\SourcesTabModule')); diff --git a/tests/app/Module/StoriesModuleTest.php b/tests/app/Module/StoriesModuleTest.php index 4a73015ab3..ffcccc48d1 100644 --- a/tests/app/Module/StoriesModuleTest.php +++ b/tests/app/Module/StoriesModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class StoriesModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\StoriesModule')); diff --git a/tests/app/Module/ThemeSelectModuleTest.php b/tests/app/Module/ThemeSelectModuleTest.php index 50de7784a7..581a15a7ba 100644 --- a/tests/app/Module/ThemeSelectModuleTest.php +++ b/tests/app/Module/ThemeSelectModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class ThemeSelectModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\ThemeSelectModule')); diff --git a/tests/app/Module/TopGivenNamesModuleTest.php b/tests/app/Module/TopGivenNamesModuleTest.php index 8d042c2d74..1bd8b75030 100644 --- a/tests/app/Module/TopGivenNamesModuleTest.php +++ b/tests/app/Module/TopGivenNamesModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class TopGivenNamesModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\TopGivenNamesModule')); diff --git a/tests/app/Module/TopPageViewsModuleTest.php b/tests/app/Module/TopPageViewsModuleTest.php index b85c368f0e..df192aea03 100644 --- a/tests/app/Module/TopPageViewsModuleTest.php +++ b/tests/app/Module/TopPageViewsModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class TopPageViewsModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\TopPageViewsModule')); diff --git a/tests/app/Module/TopSurnamesModuleTest.php b/tests/app/Module/TopSurnamesModuleTest.php index dd8203625e..0d29310d11 100644 --- a/tests/app/Module/TopSurnamesModuleTest.php +++ b/tests/app/Module/TopSurnamesModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class TopSurnamesModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\TopSurnamesModule')); diff --git a/tests/app/Module/UpcomingAnniversariesModuleTest.php b/tests/app/Module/UpcomingAnniversariesModuleTest.php index cb134407d3..1594979d33 100644 --- a/tests/app/Module/UpcomingAnniversariesModuleTest.php +++ b/tests/app/Module/UpcomingAnniversariesModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class UpcomingAnniversariesModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\UpcomingAnniversariesModule')); diff --git a/tests/app/Module/UserFavoritesModuleTest.php b/tests/app/Module/UserFavoritesModuleTest.php index 5fc8c5bee3..dcd690fdc2 100644 --- a/tests/app/Module/UserFavoritesModuleTest.php +++ b/tests/app/Module/UserFavoritesModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class UserFavoritesModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\UserFavoritesModule')); diff --git a/tests/app/Module/UserJournalModuleTest.php b/tests/app/Module/UserJournalModuleTest.php index 231f0540f2..3704c0d581 100644 --- a/tests/app/Module/UserJournalModuleTest.php +++ b/tests/app/Module/UserJournalModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class UserJournalModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\UserJournalModule')); diff --git a/tests/app/Module/UserMessagesModuleTest.php b/tests/app/Module/UserMessagesModuleTest.php index a2fb556fb9..57f7b99511 100644 --- a/tests/app/Module/UserMessagesModuleTest.php +++ b/tests/app/Module/UserMessagesModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class UserMessagesModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\UserMessagesModule')); diff --git a/tests/app/Module/UserWelcomeModuleTest.php b/tests/app/Module/UserWelcomeModuleTest.php index f92e8ac0ac..527ed296a7 100644 --- a/tests/app/Module/UserWelcomeModuleTest.php +++ b/tests/app/Module/UserWelcomeModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class UserWelcomeModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\UserWelcomeModule')); diff --git a/tests/app/Module/WelcomeBlockModuleTest.php b/tests/app/Module/WelcomeBlockModuleTest.php index f917c5cc88..9790ea1aff 100644 --- a/tests/app/Module/WelcomeBlockModuleTest.php +++ b/tests/app/Module/WelcomeBlockModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class WelcomeBlockModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\WelcomeBlockModule')); diff --git a/tests/app/Module/YahrzeitModuleTest.php b/tests/app/Module/YahrzeitModuleTest.php index 48f64acabc..e31c89b597 100644 --- a/tests/app/Module/YahrzeitModuleTest.php +++ b/tests/app/Module/YahrzeitModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class YahrzeitModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\YahrzeitModule')); diff --git a/tests/app/ModuleTest.php b/tests/app/ModuleTest.php index 315b6c74ef..87766e11a5 100644 --- a/tests/app/ModuleTest.php +++ b/tests/app/ModuleTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class ModuleTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\Module')); diff --git a/tests/app/NoteTest.php b/tests/app/NoteTest.php index b780a67ad5..5eff0ea80a 100644 --- a/tests/app/NoteTest.php +++ b/tests/app/NoteTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class NoteTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\Note')); diff --git a/tests/app/PlaceTest.php b/tests/app/PlaceTest.php index c2d5535706..94460a006c 100644 --- a/tests/app/PlaceTest.php +++ b/tests/app/PlaceTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class PlaceTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\Place')); diff --git a/tests/app/Query/QueryMediaTest.php b/tests/app/Query/QueryMediaTest.php index 43c9c8258f..b8307435f1 100644 --- a/tests/app/Query/QueryMediaTest.php +++ b/tests/app/Query/QueryMediaTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class QueryMediaTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\QueryMedia')); diff --git a/tests/app/Query/QueryNameTest.php b/tests/app/Query/QueryNameTest.php index 6361c98c21..87eeaccb90 100644 --- a/tests/app/Query/QueryNameTest.php +++ b/tests/app/Query/QueryNameTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class QueryNameTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\QueryName')); diff --git a/tests/app/Report/ReportBaseTest.php b/tests/app/Report/ReportBaseTest.php index f590dde55a..d07cb3a242 100644 --- a/tests/app/Report/ReportBaseTest.php +++ b/tests/app/Report/ReportBaseTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class ReportBaseTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\ReportBase')); diff --git a/tests/app/Report/ReportHTMLTest.php b/tests/app/Report/ReportHTMLTest.php index e60852026c..6c16e02d48 100644 --- a/tests/app/Report/ReportHTMLTest.php +++ b/tests/app/Report/ReportHTMLTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class ReportHTMLTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\ReportHtml')); diff --git a/tests/app/Report/ReportPDFTest.php b/tests/app/Report/ReportPDFTest.php index 3b915caf4f..7784bd7e71 100644 --- a/tests/app/Report/ReportPDFTest.php +++ b/tests/app/Report/ReportPDFTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class ReportPDFTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\ReportPdf')); diff --git a/tests/app/RepositoryTest.php b/tests/app/RepositoryTest.php index fe3ab2c826..79d5abcbf1 100644 --- a/tests/app/RepositoryTest.php +++ b/tests/app/RepositoryTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class RepositoryTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\Repository')); diff --git a/tests/app/SiteTest.php b/tests/app/SiteTest.php index dcc117785c..c6aa4294d8 100644 --- a/tests/app/SiteTest.php +++ b/tests/app/SiteTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class SiteTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\Site')); diff --git a/tests/app/SoundexTest.php b/tests/app/SoundexTest.php index 4c21653af9..640537578e 100644 --- a/tests/app/SoundexTest.php +++ b/tests/app/SoundexTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class SoundexTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\Soundex')); diff --git a/tests/app/SourceTest.php b/tests/app/SourceTest.php index eb3a8f0a70..724917464d 100644 --- a/tests/app/SourceTest.php +++ b/tests/app/SourceTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class SourceTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\Source')); diff --git a/tests/app/StatementTest.php b/tests/app/StatementTest.php index 64305ea22d..7068603d35 100644 --- a/tests/app/StatementTest.php +++ b/tests/app/StatementTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class StatementTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\Statement')); diff --git a/tests/app/StatsTest.php b/tests/app/StatsTest.php index 4b79684dcd..727aee3cc8 100644 --- a/tests/app/StatsTest.php +++ b/tests/app/StatsTest.php @@ -24,8 +24,6 @@ use PHPUnit_Framework_TestCase; class StatsTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { defined('WT_ROOT') || define('WT_ROOT', ''); @@ -33,8 +31,6 @@ class StatsTest extends PHPUnit_Framework_TestCase { /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\Stats')); diff --git a/tests/app/TreeTest.php b/tests/app/TreeTest.php index 821cdb2fda..edd3008dbd 100644 --- a/tests/app/TreeTest.php +++ b/tests/app/TreeTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class TreeTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\Tree')); diff --git a/tests/app/UserTest.php b/tests/app/UserTest.php index 7c4a8251cd..dda4841244 100644 --- a/tests/app/UserTest.php +++ b/tests/app/UserTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class UserTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists - * - * @return void */ public function testClassExists() { $this->assertTrue(class_exists(__NAMESPACE__ . '\User')); diff --git a/tests/includes/functions/FunctionsChartsTest.php b/tests/includes/functions/FunctionsChartsTest.php index 03f6572390..32c7d82e5f 100644 --- a/tests/includes/functions/FunctionsChartsTest.php +++ b/tests/includes/functions/FunctionsChartsTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FunctionsChartsTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that function print_sosa_number() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintSosaNumberExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_sosa_number'), true); @@ -41,8 +37,6 @@ class FunctionsChartsTest extends PHPUnit_Framework_TestCase { /** * Test that function print_family_children() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintFamilyParentsExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_family_children'), true); @@ -50,8 +44,6 @@ class FunctionsChartsTest extends PHPUnit_Framework_TestCase { /** * Test that function print_family_children() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintFamilyChildrenExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_family_children'), true); @@ -59,8 +51,6 @@ class FunctionsChartsTest extends PHPUnit_Framework_TestCase { /** * Test that function print_sosa_family() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintSosaFamilyExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_sosa_family'), true); @@ -68,8 +58,6 @@ class FunctionsChartsTest extends PHPUnit_Framework_TestCase { /** * Test that function print_url_arrow() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintUrlArrowExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_url_arrow'), true); @@ -77,8 +65,6 @@ class FunctionsChartsTest extends PHPUnit_Framework_TestCase { /** * Test that function get_sosa_name() exists in the correct namespace. - * - * @return void */ public function testFunctionGetSosaNameExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\get_sosa_name'), true); @@ -86,8 +72,6 @@ class FunctionsChartsTest extends PHPUnit_Framework_TestCase { /** * Test that function print_cousins() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintCousinsExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_cousins'), true); diff --git a/tests/includes/functions/FunctionsDateTest.php b/tests/includes/functions/FunctionsDateTest.php index 5efbc49768..e6ea8761e4 100644 --- a/tests/includes/functions/FunctionsDateTest.php +++ b/tests/includes/functions/FunctionsDateTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FunctionsDateTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that function get_age_at_event() exists in the correct namespace. - * - * @return void */ public function testFunctionGetAgeAtEventExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\get_age_at_event'), true); @@ -41,8 +37,6 @@ class FunctionsDateTest extends PHPUnit_Framework_TestCase { /** * Test that function format_timestamp() exists in the correct namespace. - * - * @return void */ public function testFunctionFormatTimestampExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\format_timestamp'), true); @@ -50,8 +44,6 @@ class FunctionsDateTest extends PHPUnit_Framework_TestCase { /** * Test that function timestamp_to_gedcom_date() exists in the correct namespace. - * - * @return void */ public function testFunctionTimestampToGedcomDateExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\timestamp_to_gedcom_date'), true); diff --git a/tests/includes/functions/FunctionsDbTest.php b/tests/includes/functions/FunctionsDbTest.php index 54468023bf..e29ef2a096 100644 --- a/tests/includes/functions/FunctionsDbTest.php +++ b/tests/includes/functions/FunctionsDbTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that function fetch_all_links() exists in the correct namespace. - * - * @return void */ public function testFunctionFetchAllLinksExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\fetch_all_links'), true); @@ -41,8 +37,6 @@ class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Test that function get_source_list() exists in the correct namespace. - * - * @return void */ public function testFunctionGetSourceListExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\get_source_list'), true); @@ -50,8 +44,6 @@ class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Test that function get_repo_list() exists in the correct namespace. - * - * @return void */ public function testFunctionGetRepoListExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\get_repo_list'), true); @@ -59,8 +51,6 @@ class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Test that function get_note_list() exists in the correct namespace. - * - * @return void */ public function testFunctionGetNoteListExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\get_note_list'), true); @@ -68,8 +58,6 @@ class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Test that function search_indis() exists in the correct namespace. - * - * @return void */ public function testFunctionSearchIndisExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\search_indis'), true); @@ -77,8 +65,6 @@ class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Test that function search_indis_names() exists in the correct namespace. - * - * @return void */ public function testFunctionSearchIndisNamesExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\search_indis_names'), true); @@ -86,8 +72,6 @@ class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Test that function search_indis_soundex() exists in the correct namespace. - * - * @return void */ public function testFunctionSearchIndisSoundexExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\search_indis_soundex'), true); @@ -95,8 +79,6 @@ class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Test that function get_recent_changes() exists in the correct namespace. - * - * @return void */ public function testFunctionGetRecentChangesExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\get_recent_changes'), true); @@ -104,8 +86,6 @@ class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Test that function search_fams() exists in the correct namespace. - * - * @return void */ public function testFunctionSearchFamsExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\search_fams'), true); @@ -113,8 +93,6 @@ class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Test that function search_fams_names() exists in the correct namespace. - * - * @return void */ public function testFunctionSearchFamsNamesExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\search_fams_names'), true); @@ -122,8 +100,6 @@ class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Test that function search_sources() exists in the correct namespace. - * - * @return void */ public function testFunctionSearchSourcesExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\search_sources'), true); @@ -131,8 +107,6 @@ class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Test that function search_notes() exists in the correct namespace. - * - * @return void */ public function testFunctionSearchNotesExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\search_notes'), true); @@ -140,8 +114,6 @@ class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Test that function search_repos() exists in the correct namespace. - * - * @return void */ public function testFunctionSearchReposExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\search_repos'), true); @@ -149,8 +121,6 @@ class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Test that function find_rin_id() exists in the correct namespace. - * - * @return void */ public function testFunctionFindRinIdExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\find_rin_id'), true); @@ -158,8 +128,6 @@ class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Test that function get_common_surnames() exists in the correct namespace. - * - * @return void */ public function testFunctionGetCommonSurnamesExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\get_common_surnames'), true); @@ -167,8 +135,6 @@ class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Test that function get_top_surnames() exists in the correct namespace. - * - * @return void */ public function testFunctionGetTopSurnamesExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\get_top_surnames'), true); @@ -176,8 +142,6 @@ class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Test that function get_anniversary_events() exists in the correct namespace. - * - * @return void */ public function testFunctionGetAnniversaryEventsExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\get_anniversary_events'), true); @@ -185,8 +149,6 @@ class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Test that function get_calendar_events() exists in the correct namespace. - * - * @return void */ public function testFunctionGetCalendarEventsExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\get_calendar_events'), true); @@ -194,8 +156,6 @@ class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Test that function is_media_used_in_other_gedcom() exists in the correct namespace. - * - * @return void */ public function testFunctionIsMediaUsedInOtherGedcomExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\is_media_used_in_other_gedcom'), true); @@ -203,8 +163,6 @@ class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Test that function get_user_blocks() exists in the correct namespace. - * - * @return void */ public function testFunctionGetUserBlocksExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\get_user_blocks'), true); @@ -212,8 +170,6 @@ class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Test that function get_gedcom_blocks() exists in the correct namespace. - * - * @return void */ public function testFunctionGetGedcomBlocksExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\get_gedcom_blocks'), true); @@ -221,8 +177,6 @@ class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Test that function update_favorites() exists in the correct namespace. - * - * @return void */ public function testFunctionUpdateFavoritesExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\update_favorites'), true); @@ -230,8 +184,6 @@ class FunctionsDbTest extends PHPUnit_Framework_TestCase { /** * Test that function get_events_list() exists in the correct namespace. - * - * @return void */ public function testFunctionGetEventsListExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\get_events_list'), true); diff --git a/tests/includes/functions/FunctionsEditTest.php b/tests/includes/functions/FunctionsEditTest.php index d67e23afb0..8782a3b9d8 100644 --- a/tests/includes/functions/FunctionsEditTest.php +++ b/tests/includes/functions/FunctionsEditTest.php @@ -24,8 +24,6 @@ use PHPUnit_Framework_TestCase; class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { defined('WT_ROOT') || define('WT_ROOT', ''); @@ -33,8 +31,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function select_edit_control() exists in the correct namespace. - * - * @return void */ public function testFunctionSelectEditControlExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\select_edit_control'), true); @@ -42,9 +38,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function radio_buttons() exists in the correct namespace. - * @return void - * - * @return void */ public function testFunctionRadioButtonsExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\radio_buttons'), true); @@ -52,8 +45,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function edit_field_yes_no() exists in the correct namespace. - * - * @return void */ public function testFunctionEditFieldYesNoExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\edit_field_yes_no'), true); @@ -61,8 +52,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function checkbox() exists in the correct namespace. - * - * @return void */ public function testFunctionCheckboxExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\checkbox'), true); @@ -70,8 +59,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function two_state_checkbox() exists in the correct namespace. - * - * @return void */ public function testFunctionTwoStateCheckboxExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\two_state_checkbox'), true); @@ -79,8 +66,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function edit_language_checkboxes() exists in the correct namespace. - * - * @return void */ public function testFunctionEditLanguageCheckboxesExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\edit_language_checkboxes'), true); @@ -88,8 +73,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function edit_field_access_level() exists in the correct namespace. - * - * @return void */ public function testFunctionEditFieldAccessLevelExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\edit_field_access_level'), true); @@ -97,8 +80,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function edit_field_resn() exists in the correct namespace. - * - * @return void */ public function testFunctionEditFieldResnExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\edit_field_resn'), true); @@ -106,8 +87,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function edit_field_contact() exists in the correct namespace. - * - * @return void */ public function testFunctionEditFieldContactExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\edit_field_contact'), true); @@ -115,8 +94,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function edit_field_language() exists in the correct namespace. - * - * @return void */ public function testFunctionEditFieldLangaugeExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\edit_field_language'), true); @@ -124,8 +101,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function edit_field_integers() exists in the correct namespace. - * - * @return void */ public function testFunctionEditFieldIntegersExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\edit_field_integers'), true); @@ -133,8 +108,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function edit_field_username() exists in the correct namespace. - * - * @return void */ public function testFunctionEditFieldUsernameExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\edit_field_username'), true); @@ -142,8 +115,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function edit_field_adop() exists in the correct namespace. - * - * @return void */ public function testFunctionEditFieldAdopExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\edit_field_adop'), true); @@ -151,8 +122,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function edit_field_pedi() exists in the correct namespace. - * - * @return void */ public function testFunctionEditFieldPediExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\edit_field_pedi'), true); @@ -160,8 +129,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function edit_field_name_type() exists in the correct namespace. - * - * @return void */ public function testFunctionEditFieldNameTypeExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\edit_field_name_type'), true); @@ -169,8 +136,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function edit_field_rela() exists in the correct namespace. - * - * @return void */ public function testFunctionEditFieldRelaExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\edit_field_rela'), true); @@ -178,8 +143,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function remove_links() exists in the correct namespace. - * - * @return void */ public function testFunctionRemoveLinksExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\remove_links'), true); @@ -187,8 +150,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function print_calendar_popup() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintCalendarPopupExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_calendar_popup'), true); @@ -196,8 +157,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function print_addnewmedia_link() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintAddnewmediaLinkExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_addnewmedia_link'), true); @@ -205,8 +164,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function print_addnewrepository_link() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintAddnewrepositoryLinkExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_addnewrepository_link'), true); @@ -214,8 +171,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function print_addnewnote_link() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintAddnewnoteLinkExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_addnewnote_link'), true); @@ -223,8 +178,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function print_editnote_link() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintEditnoteLinkExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_editnote_link'), true); @@ -232,8 +185,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function print_addnewsource_link() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintAddnewsourceLinkExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_addnewsource_link'), true); @@ -241,8 +192,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function add_simple_tag() exists in the correct namespace. - * - * @return void */ public function testFunctionAddSimpleTagExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\add_simple_tag'), true); @@ -250,8 +199,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function print_add_layer() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintAddLayerExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_add_layer'), true); @@ -259,8 +206,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function addSimpleTags() exists in the correct namespace. - * - * @return void */ public function testFunctionAddSimpleTagsExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\addSimpleTags'), true); @@ -268,8 +213,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function addNewName() exists in the correct namespace. - * - * @return void */ public function testFunctionAddNewNameExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\addNewName'), true); @@ -277,8 +220,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function addNewSex() exists in the correct namespace. - * - * @return void */ public function testFunctionAddNewSexExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\addNewSex'), true); @@ -286,8 +227,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function addNewFact() exists in the correct namespace. - * - * @return void */ public function testFunctionAddNewFactExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\addNewFact'), true); @@ -295,8 +234,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function splitSOUR() exists in the correct namespace. - * - * @return void */ public function testFunctionSplitSourExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\splitSOUR'), true); @@ -304,8 +241,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function updateSOUR() exists in the correct namespace. - * - * @return void */ public function testFunctionUpdateSourExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\updateSOUR'), true); @@ -313,8 +248,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function updateRest() exists in the correct namespace. - * - * @return void */ public function testFunctionUpdateRestExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\updateRest'), true); @@ -322,8 +255,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function handle_updates() exists in the correct namespace. - * - * @return void */ public function testFunctionHandleUpdatesExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\handle_updates'), true); @@ -331,8 +262,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function create_add_form() exists in the correct namespace. - * - * @return void */ public function testFunctionCreateAddFromExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\create_add_form'), true); @@ -340,8 +269,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function create_edit_form() exists in the correct namespace. - * - * @return void */ public function testFunctionCreateEditFromExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\create_edit_form'), true); @@ -349,8 +276,6 @@ class FunctionsEditTest extends PHPUnit_Framework_TestCase { /** * Test that function insert_missing_subtags() exists in the correct namespace. - * - * @return void */ public function testFunctionInsertMissingSubtagsExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\insert_missing_subtags'), true); diff --git a/tests/includes/functions/FunctionsExportTest.php b/tests/includes/functions/FunctionsExportTest.php index abff27e0cf..21447e0e45 100644 --- a/tests/includes/functions/FunctionsExportTest.php +++ b/tests/includes/functions/FunctionsExportTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FunctionsExportTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that function reformat_record_export() exists in the correct namespace. - * - * @return void */ public function testFunctionReformatRecordExportExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\reformat_record_export'), true); @@ -41,8 +37,6 @@ class FunctionsExportTest extends PHPUnit_Framework_TestCase { /** * Test that function gedcom_header() exists in the correct namespace. - * - * @return void */ public function testFunctionGedcomHeaderExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\gedcom_header'), true); @@ -50,8 +44,6 @@ class FunctionsExportTest extends PHPUnit_Framework_TestCase { /** * Test that function convert_media_path() exists in the correct namespace. - * - * @return void */ public function testFunctionConvertMediaPathExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\convert_media_path'), true); @@ -59,8 +51,6 @@ class FunctionsExportTest extends PHPUnit_Framework_TestCase { /** * Test that function export_gedcom() exists in the correct namespace. - * - * @return void */ public function testFunctionExportGedcomExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\export_gedcom'), true); diff --git a/tests/includes/functions/FunctionsImportTest.php b/tests/includes/functions/FunctionsImportTest.php index 1cce8140ad..f1a653574a 100644 --- a/tests/includes/functions/FunctionsImportTest.php +++ b/tests/includes/functions/FunctionsImportTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FunctionsImportTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that function reformat_record_import() exists in the correct namespace. - * - * @return void */ public function testFunctionReformatRecordImportExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\reformat_record_import'), true); @@ -41,8 +37,6 @@ class FunctionsImportTest extends PHPUnit_Framework_TestCase { /** * Test that function update_dates() exists in the correct namespace. - * - * @return void */ public function testFunctionUpdateDatesExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\update_dates'), true); @@ -50,8 +44,6 @@ class FunctionsImportTest extends PHPUnit_Framework_TestCase { /** * Test that function update_links() exists in the correct namespace. - * - * @return void */ public function testFunctionUpdateLinksExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\update_links'), true); @@ -59,8 +51,6 @@ class FunctionsImportTest extends PHPUnit_Framework_TestCase { /** * Test that function update_names() exists in the correct namespace. - * - * @return void */ public function testFunctionUpdateNamesExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\update_names'), true); @@ -68,8 +58,6 @@ class FunctionsImportTest extends PHPUnit_Framework_TestCase { /** * Test that function convert_inline_media() exists in the correct namespace. - * - * @return void */ public function testFunctionConvertInlineMediaExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\convert_inline_media'), true); @@ -77,8 +65,6 @@ class FunctionsImportTest extends PHPUnit_Framework_TestCase { /** * Test that function create_media_object() exists in the correct namespace. - * - * @return void */ public function testFunctionCreateMediaObjectExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\create_media_object'), true); @@ -86,8 +72,6 @@ class FunctionsImportTest extends PHPUnit_Framework_TestCase { /** * Test that function accept_all_changes() exists in the correct namespace. - * - * @return void */ public function testFunctionAcceptAllChangesExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\accept_all_changes'), true); @@ -95,8 +79,6 @@ class FunctionsImportTest extends PHPUnit_Framework_TestCase { /** * Test that function reject_all_changes() exists in the correct namespace. - * - * @return void */ public function testFunctionRejectAllChangesExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\reject_all_changes'), true); @@ -104,8 +86,6 @@ class FunctionsImportTest extends PHPUnit_Framework_TestCase { /** * Test that function update_record() exists in the correct namespace. - * - * @return void */ public function testFunctionUpdateRecordExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\update_record'), true); diff --git a/tests/includes/functions/FunctionsMediaDbTest.php b/tests/includes/functions/FunctionsMediaDbTest.php index 2f44bd753d..95c9e0b9d6 100644 --- a/tests/includes/functions/FunctionsMediaDbTest.php +++ b/tests/includes/functions/FunctionsMediaDbTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FunctionsMediaDbTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test the function return_bytes(). - * - * @return void */ public function testFunctionReturnBytes() { $this->assertSame(-1, return_bytes('')); @@ -51,8 +47,6 @@ class FunctionsMediaDbTest extends PHPUnit_Framework_TestCase { /** * Test that function hasMemoryForImage() exists in the correct namespace. - * - * @return void */ public function testFunctionHasMemoryForImageExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\hasMemoryForImage'), true); diff --git a/tests/includes/functions/FunctionsPrintFactsTest.php b/tests/includes/functions/FunctionsPrintFactsTest.php index bed10e413d..51cf08cefc 100644 --- a/tests/includes/functions/FunctionsPrintFactsTest.php +++ b/tests/includes/functions/FunctionsPrintFactsTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FunctionsPrintFactsTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that function print_fact() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintFactExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_fact'), true); @@ -41,8 +37,6 @@ class FunctionsPrintFactsTest extends PHPUnit_Framework_TestCase { /** * Test that function print_repository_record() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintRepositoryRecordExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_repository_record'), true); @@ -50,8 +44,6 @@ class FunctionsPrintFactsTest extends PHPUnit_Framework_TestCase { /** * Test that function print_fact_sources() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintFactSourcesExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_fact_sources'), true); @@ -59,8 +51,6 @@ class FunctionsPrintFactsTest extends PHPUnit_Framework_TestCase { /** * Test that function print_media_links() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintMediaLinksExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_media_links'), true); @@ -68,8 +58,6 @@ class FunctionsPrintFactsTest extends PHPUnit_Framework_TestCase { /** * Test that function print_main_sources() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintMainSourcesExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_main_sources'), true); @@ -77,8 +65,6 @@ class FunctionsPrintFactsTest extends PHPUnit_Framework_TestCase { /** * Test that function printSourceStructure() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintSourceStructureExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\printSourceStructure'), true); @@ -86,8 +72,6 @@ class FunctionsPrintFactsTest extends PHPUnit_Framework_TestCase { /** * Test that function getSourceStructure() exists in the correct namespace. - * - * @return void */ public function testFunctionGetSourceStructureExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\getSourceStructure'), true); @@ -95,8 +79,6 @@ class FunctionsPrintFactsTest extends PHPUnit_Framework_TestCase { /** * Test that function print_main_notes() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintMainNotesExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_main_notes'), true); @@ -104,8 +86,6 @@ class FunctionsPrintFactsTest extends PHPUnit_Framework_TestCase { /** * Test that function print_main_media() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintMainMediaExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_main_media'), true); diff --git a/tests/includes/functions/FunctionsPrintListsTest.php b/tests/includes/functions/FunctionsPrintListsTest.php index 959c7d1c7f..164f0979c6 100644 --- a/tests/includes/functions/FunctionsPrintListsTest.php +++ b/tests/includes/functions/FunctionsPrintListsTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FunctionsPrintListsTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that function format_indi_table() exists in the correct namespace. - * - * @return void */ public function testFunctionFormatIndiTableExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\format_indi_table'), true); @@ -41,8 +37,6 @@ class FunctionsPrintListsTest extends PHPUnit_Framework_TestCase { /** * Test that function format_fam_table() exists in the correct namespace. - * - * @return void */ public function testFunctionFormatFamTableExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\format_fam_table'), true); @@ -50,8 +44,6 @@ class FunctionsPrintListsTest extends PHPUnit_Framework_TestCase { /** * Test that function format_sour_table() exists in the correct namespace. - * - * @return void */ public function testFunctionFormatSourTableExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\format_sour_table'), true); @@ -59,8 +51,6 @@ class FunctionsPrintListsTest extends PHPUnit_Framework_TestCase { /** * Test that function format_note_table() exists in the correct namespace. - * - * @return void */ public function testFunctionFormatNoteTableExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\format_note_table'), true); @@ -68,8 +58,6 @@ class FunctionsPrintListsTest extends PHPUnit_Framework_TestCase { /** * Test that function format_repo_table() exists in the correct namespace. - * - * @return void */ public function testFunctionFormatRepoTableExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\format_repo_table'), true); @@ -77,8 +65,6 @@ class FunctionsPrintListsTest extends PHPUnit_Framework_TestCase { /** * Test that function format_media_table() exists in the correct namespace. - * - * @return void */ public function testFunctionFormatMediaTableExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\format_media_table'), true); @@ -86,8 +72,6 @@ class FunctionsPrintListsTest extends PHPUnit_Framework_TestCase { /** * Test that function format_surname_table() exists in the correct namespace. - * - * @return void */ public function testFunctionFormatSurnameTableExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\format_surname_table'), true); @@ -95,8 +79,6 @@ class FunctionsPrintListsTest extends PHPUnit_Framework_TestCase { /** * Test that function format_surname_tagcloud() exists in the correct namespace. - * - * @return void */ public function testFunctionFormatSurnameTagcloudExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\format_surname_tagcloud'), true); @@ -104,8 +86,6 @@ class FunctionsPrintListsTest extends PHPUnit_Framework_TestCase { /** * Test that function format_surname_list() exists in the correct namespace. - * - * @return void */ public function testFunctionFormatSurnameListExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\format_surname_list'), true); @@ -113,8 +93,6 @@ class FunctionsPrintListsTest extends PHPUnit_Framework_TestCase { /** * Test that function print_changes_list() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintChangesListExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_changes_list'), true); @@ -122,8 +100,6 @@ class FunctionsPrintListsTest extends PHPUnit_Framework_TestCase { /** * Test that function print_changes_table() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintChangesTableExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_changes_table'), true); @@ -131,8 +107,6 @@ class FunctionsPrintListsTest extends PHPUnit_Framework_TestCase { /** * Test that function print_events_table() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintEventsTableExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_events_table'), true); @@ -140,8 +114,6 @@ class FunctionsPrintListsTest extends PHPUnit_Framework_TestCase { /** * Test that function print_events_list() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintEventsListExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_events_list'), true); @@ -149,8 +121,6 @@ class FunctionsPrintListsTest extends PHPUnit_Framework_TestCase { /** * Test that function print_chart_by_age() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintChartByAgeExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_chart_by_age'), true); @@ -158,8 +128,6 @@ class FunctionsPrintListsTest extends PHPUnit_Framework_TestCase { /** * Test that function print_chart_by_decade() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintChartByDecadeExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_chart_by_decade'), true); diff --git a/tests/includes/functions/FunctionsPrintTest.php b/tests/includes/functions/FunctionsPrintTest.php index 49751c69a8..ec14b2dde5 100644 --- a/tests/includes/functions/FunctionsPrintTest.php +++ b/tests/includes/functions/FunctionsPrintTest.php @@ -24,27 +24,20 @@ use PHPUnit_Framework_TestCase; class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that function print_pedigree_person() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintPedigreePersonExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_pedigree_person'), true); } /** - - /** + /** * Test that function print_note_record() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintNoteRecordExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_note_record'), true); @@ -52,8 +45,6 @@ class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Test that function print_fact_notes() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintFactNotesExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_fact_notes'), true); @@ -61,8 +52,6 @@ class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Test that function help_link() exists in the correct namespace. - * - * @return void */ public function testFunctionHelpLinkExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\help_link'), true); @@ -70,8 +59,6 @@ class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Test that function wiki_help_link() exists in the correct namespace. - * - * @return void */ public function testFunctionWikiHelpLinkExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\wiki_help_link'), true); @@ -79,8 +66,6 @@ class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Test that function highlight_search_hits() exists in the correct namespace. - * - * @return void */ public function testFunctionHighlightSearchHitsExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\highlight_search_hits'), true); @@ -88,8 +73,6 @@ class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Test that function format_asso_rela_record() exists in the correct namespace. - * - * @return void */ public function testFunctionFormatAssoRelaRecordExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\format_asso_rela_record'), true); @@ -97,8 +80,6 @@ class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Test that function format_parents_age() exists in the correct namespace. - * - * @return void */ public function testFunctionFormatParentsAgeExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\format_parents_age'), true); @@ -106,8 +87,6 @@ class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Test that function format_fact_date() exists in the correct namespace. - * - * @return void */ public function testFunctionFormatFactDateExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\format_fact_date'), true); @@ -115,8 +94,6 @@ class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Test that function format_fact_place() exists in the correct namespace. - * - * @return void */ public function testFunctionFormatFactPlaceExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\format_fact_place'), true); @@ -124,8 +101,6 @@ class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Test that function CheckFactUnique() exists in the correct namespace. - * - * @return void */ public function testFunctionCheckFactUniqueExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\CheckFactUnique'), true); @@ -133,8 +108,6 @@ class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Test that function print_add_new_fact() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintAddNewFactExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_add_new_fact'), true); @@ -142,8 +115,6 @@ class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Test that function init_calendar_popup() exists in the correct namespace. - * - * @return void */ public function testFunctionInitCalendarPopupExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\init_calendar_popup'), true); @@ -151,8 +122,6 @@ class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Test that function print_findindi_link() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintFindindiLinkExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_findindi_link'), true); @@ -160,8 +129,6 @@ class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Test that function print_findplace_link() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintFindplaceLinkExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_findplace_link'), true); @@ -169,8 +136,6 @@ class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Test that function print_findfamily_link() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintFindfamilyLinkExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_findfamily_link'), true); @@ -178,8 +143,6 @@ class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Test that function print_specialchar_link() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintSpecialcharLinkExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_specialchar_link'), true); @@ -187,8 +150,6 @@ class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Test that function print_autopaste_link() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintAutopasteLinkExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_autopaste_link'), true); @@ -196,8 +157,6 @@ class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Test that function print_findsource_link() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintFindsourceLinkExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_findsource_link'), true); @@ -205,8 +164,6 @@ class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Test that function print_findnote_link() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintFindnoteLinkExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_findnote_link'), true); @@ -214,8 +171,6 @@ class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Test that function print_findrepository_link() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintFindrepositoryLinkExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_findrepository_link'), true); @@ -223,8 +178,6 @@ class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Test that function print_findmedia_link() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintFindmediaLinkExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_findmedia_link'), true); @@ -232,8 +185,6 @@ class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Test that function print_findfact_link() exists in the correct namespace. - * - * @return void */ public function testFunctionPrintFindfactLinkExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\print_findfact_link'), true); @@ -241,8 +192,6 @@ class FunctionsPrintTest extends PHPUnit_Framework_TestCase { /** * Test that function get_lds_glance() exists in the correct namespace. - * - * @return void */ public function testFunctionGetLdsGlanceExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\get_lds_glance'), true); diff --git a/tests/includes/functions/FunctionsRtlTest.php b/tests/includes/functions/FunctionsRtlTest.php index c505aeca40..152cc9c132 100644 --- a/tests/includes/functions/FunctionsRtlTest.php +++ b/tests/includes/functions/FunctionsRtlTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FunctionsRtlTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that function stripLRMRLM() exists in the correct namespace. - * - * @return void */ public function testFunctionStripLRMRLMExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\stripLRMRLM'), true); @@ -41,8 +37,6 @@ class FunctionsRtlTest extends PHPUnit_Framework_TestCase { /** * Test that function spanLTRRTL() exists in the correct namespace. - * - * @return void */ public function testFunctionSpanLTRRTLExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\spanLTRRTL'), true); @@ -50,8 +44,6 @@ class FunctionsRtlTest extends PHPUnit_Framework_TestCase { /** * Test that function starredName() exists in the correct namespace. - * - * @return void */ public function testFunctionStarredNameExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\starredName'), true); @@ -59,8 +51,6 @@ class FunctionsRtlTest extends PHPUnit_Framework_TestCase { /** * Test that function getChar() exists in the correct namespace. - * - * @return void */ public function testFunctionGetCharExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\getChar'), true); @@ -68,8 +58,6 @@ class FunctionsRtlTest extends PHPUnit_Framework_TestCase { /** * Test that function breakCurrentSpan() exists in the correct namespace. - * - * @return void */ public function testFunctionBreakCurrentSpanExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\breakCurrentSpan'), true); @@ -77,8 +65,6 @@ class FunctionsRtlTest extends PHPUnit_Framework_TestCase { /** * Test that function beginCurrentSpan() exists in the correct namespace. - * - * @return void */ public function testFunctionBeginCurrentSpanExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\beginCurrentSpan'), true); @@ -86,8 +72,6 @@ class FunctionsRtlTest extends PHPUnit_Framework_TestCase { /** * Test that function finishCurrentSpan() exists in the correct namespace. - * - * @return void */ public function testFunctionFinishCurrentSpanExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\finishCurrentSpan'), true); @@ -95,8 +79,6 @@ class FunctionsRtlTest extends PHPUnit_Framework_TestCase { /** * Test that function utf8_wordwrap() exists in the correct namespace. - * - * @return void */ public function testFunctionUtf8WordwrapExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\utf8_wordwrap'), true); diff --git a/tests/includes/functions/FunctionsTest.php b/tests/includes/functions/FunctionsTest.php index f8677b641e..1a66a4ef6c 100644 --- a/tests/includes/functions/FunctionsTest.php +++ b/tests/includes/functions/FunctionsTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class FunctionsTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that function fetch_latest_version() exists in the correct namespace. - * - * @return void */ public function testFunctionFetchLatestVersionExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\fetch_latest_version'), true); @@ -41,8 +37,6 @@ class FunctionsTest extends PHPUnit_Framework_TestCase { /** * Test that function file_upload_error_text() exists in the correct namespace. - * - * @return void */ public function testFunctionFileUploadErrorTextExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\file_upload_error_text'), true); @@ -50,8 +44,6 @@ class FunctionsTest extends PHPUnit_Framework_TestCase { /** * Test that function get_sub_record() exists in the correct namespace. - * - * @return void */ public function testFunctionGetSubRecordExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\get_sub_record'), true); @@ -59,8 +51,6 @@ class FunctionsTest extends PHPUnit_Framework_TestCase { /** * Test that function get_cont() exists in the correct namespace. - * - * @return void */ public function testFunctionGetContExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\get_cont'), true); @@ -68,8 +58,6 @@ class FunctionsTest extends PHPUnit_Framework_TestCase { /** * Test that function event_sort() exists in the correct namespace. - * - * @return void */ public function testFunctionEventSortExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\event_sort'), true); @@ -77,8 +65,6 @@ class FunctionsTest extends PHPUnit_Framework_TestCase { /** * Test that function event_sort_name() exists in the correct namespace. - * - * @return void */ public function testFunctionEventSortNameExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\event_sort_name'), true); @@ -86,8 +72,6 @@ class FunctionsTest extends PHPUnit_Framework_TestCase { /** * Test that function sort_facts() exists in the correct namespace. - * - * @return void */ public function testFunctionSortFactsExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\sort_facts'), true); @@ -95,8 +79,6 @@ class FunctionsTest extends PHPUnit_Framework_TestCase { /** * Test that function get_close_relationship_name() exists in the correct namespace. - * - * @return void */ public function testFunctionGetCloseRelationshipNameExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\get_close_relationship_name'), true); @@ -104,8 +86,6 @@ class FunctionsTest extends PHPUnit_Framework_TestCase { /** * Test that function get_associate_relationship_name() exists in the correct namespace. - * - * @return void */ public function testFunctionGetAssociateRelationshipNameExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\get_associate_relationship_name'), true); @@ -113,8 +93,6 @@ class FunctionsTest extends PHPUnit_Framework_TestCase { /** * Test that function get_relationship() exists in the correct namespace. - * - * @return void */ public function testFunctionGetRelationshipExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\get_relationship'), true); @@ -122,8 +100,6 @@ class FunctionsTest extends PHPUnit_Framework_TestCase { /** * Test that function get_relationship_name() exists in the correct namespace. - * - * @return void */ public function testFunctionGetRelationshipNameExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\get_relationship_name'), true); @@ -131,8 +107,6 @@ class FunctionsTest extends PHPUnit_Framework_TestCase { /** * Test that function cousin_name() exists in the correct namespace. - * - * @return void */ public function testFunctionCousinNameExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\cousin_name'), true); @@ -140,8 +114,6 @@ class FunctionsTest extends PHPUnit_Framework_TestCase { /** * Test that function cousin_name2() exists in the correct namespace. - * - * @return void */ public function testFunctionCousinName2Exists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\cousin_name2'), true); @@ -149,8 +121,6 @@ class FunctionsTest extends PHPUnit_Framework_TestCase { /** * Test that function get_relationship_name_from_path() exists in the correct namespace. - * - * @return void */ public function testFunctionGetRelationshipNameFromPathExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\get_relationship_name_from_path'), true); @@ -158,8 +128,6 @@ class FunctionsTest extends PHPUnit_Framework_TestCase { /** * Test that function get_query_url() exists in the correct namespace. - * - * @return void */ public function testFunctionGetQueryUrlExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\get_query_url'), true); @@ -167,8 +135,6 @@ class FunctionsTest extends PHPUnit_Framework_TestCase { /** * Test that function isFileExternal() exists in the correct namespace. - * - * @return void */ public function testFunctionIsFileExternalExists() { $this->assertEquals(function_exists(__NAMESPACE__ . '\\isFileExternal'), true); @@ -176,8 +142,6 @@ class FunctionsTest extends PHPUnit_Framework_TestCase { /** * Tests for function isFileExternal() - * - * @return void */ public function testFunctionIsFileExternal() { $this->assertEquals(isFileExternal('http://www.example.com/file.txt'), true); diff --git a/tests/modules_v3/batch_update/plugins/DeathYBuPluginTest.php b/tests/modules_v3/batch_update/plugins/DeathYBuPluginTest.php index 70747b315a..b830d36bab 100644 --- a/tests/modules_v3/batch_update/plugins/DeathYBuPluginTest.php +++ b/tests/modules_v3/batch_update/plugins/DeathYBuPluginTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class DeathYBuPluginTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists. - * - * @return void */ public function testFunctionGetUserFullNameExists() { $this->assertEquals(true, class_exists(__NAMESPACE__ . '\\BatchUpdateMissingDeathPlugin')); diff --git a/tests/modules_v3/batch_update/plugins/DuplicateLinksBuPluginTest.php b/tests/modules_v3/batch_update/plugins/DuplicateLinksBuPluginTest.php index 82be342071..ddbc91e4e1 100644 --- a/tests/modules_v3/batch_update/plugins/DuplicateLinksBuPluginTest.php +++ b/tests/modules_v3/batch_update/plugins/DuplicateLinksBuPluginTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class DuplicateLinksBuPluginTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists. - * - * @return void */ public function testFunctionGetUserFullNameExists() { $this->assertEquals(true, class_exists(__NAMESPACE__ . '\\BatchUpdateDuplicateLinksPlugin')); diff --git a/tests/modules_v3/batch_update/plugins/MarriedNamesBuPluginTest.php b/tests/modules_v3/batch_update/plugins/MarriedNamesBuPluginTest.php index 277d0bbe66..214866c134 100644 --- a/tests/modules_v3/batch_update/plugins/MarriedNamesBuPluginTest.php +++ b/tests/modules_v3/batch_update/plugins/MarriedNamesBuPluginTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class MarriedNamesBuPluginTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists. - * - * @return void */ public function testFunctionGetUserFullNameExists() { $this->assertEquals(true, class_exists(__NAMESPACE__ . '\\BatchUpdateMarriedNamesPlugin')); diff --git a/tests/modules_v3/batch_update/plugins/NameFormatBuPluginTest.php b/tests/modules_v3/batch_update/plugins/NameFormatBuPluginTest.php index d377689a1f..e9a854434b 100644 --- a/tests/modules_v3/batch_update/plugins/NameFormatBuPluginTest.php +++ b/tests/modules_v3/batch_update/plugins/NameFormatBuPluginTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class NameFormatBuPluginTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists. - * - * @return void */ public function testFunctionGetUserFullNameExists() { $this->assertEquals(true, class_exists(__NAMESPACE__ . '\\BatchUpdateNameFormatPlugin')); diff --git a/tests/modules_v3/batch_update/plugins/SearchReplaceBuPluginTest.php b/tests/modules_v3/batch_update/plugins/SearchReplaceBuPluginTest.php index c8725924df..e7631d3cd3 100644 --- a/tests/modules_v3/batch_update/plugins/SearchReplaceBuPluginTest.php +++ b/tests/modules_v3/batch_update/plugins/SearchReplaceBuPluginTest.php @@ -24,16 +24,12 @@ use PHPUnit_Framework_TestCase; class SearchReplaceBuPluginTest extends PHPUnit_Framework_TestCase { /** * Prepare the environment for these tests - * - * @return void */ public function setUp() { } /** * Test that the class exists. - * - * @return void */ public function testFunctionGetUserFullNameExists() { $this->assertEquals(true, class_exists(__NAMESPACE__ . '\\BatchUpdateSearchReplacePlugin')); |
