diff options
Diffstat (limited to 'tests/app')
146 files changed, 4 insertions, 624 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')); |
