eol whitespace cleanup
authorMark A. Hershberger <mah@users.mediawiki.org>
Sun, 24 Oct 2010 15:12:13 +0000 (15:12 +0000)
committerMark A. Hershberger <mah@users.mediawiki.org>
Sun, 24 Oct 2010 15:12:13 +0000 (15:12 +0000)
maintenance/tests/phpunit/includes/ResourceLoaderTest.php
maintenance/tests/phpunit/phpunit.php

index 2ed3d02..c922718 100644 (file)
@@ -3,7 +3,7 @@
 class ResourceLoaderTest extends PHPUnit_Framework_TestCase {
 
        protected static $resourceLoaderRegisterModulesHook;
-       
+
        /* Hook Methods */
 
        /**
@@ -15,7 +15,6 @@ class ResourceLoaderTest extends PHPUnit_Framework_TestCase {
        }
 
        /* Provider Methods */
-
        public function provideValidModules() {
                return array(
                        array( 'TEST.validModule1', new ResourceLoaderTestModule() ),
@@ -23,7 +22,7 @@ class ResourceLoaderTest extends PHPUnit_Framework_TestCase {
        }
 
        /* Test Methods */
-       
+
        /**
         * Ensures that the ResourceLoaderRegisterModules hook is called when a new ResourceLoader object is constructed
         * @covers ResourceLoader::__construct
@@ -47,11 +46,11 @@ class ResourceLoaderTest extends PHPUnit_Framework_TestCase {
                $resourceLoader->register( $name, $module );
                $this->assertEquals( $module, $resourceLoader->getModule( $name ) );
        }
-       
+
        /**
         * Allthough ResourceLoader::register uses type hinting to prevent arbitrary information being passed through as a
         * ResourceLoaderModule object, null can still get through.
-        * 
+        *
         * @depends testCreatingNewResourceLoaderCallsRegistrationHook
         * @covers ResourceLoader::register
         * @covers ResourceLoader::getModule
index 1f20259..744f3d0 100755 (executable)
@@ -2,7 +2,7 @@
 <?php
 /**
  * Bootstrapping for MediaWiki PHPUnit tests
- * 
+ *
  * @file
  */
 
@@ -30,5 +30,5 @@ if( version_compare( PHPUnit_Runner_Version::id(), '3.5.0', '>=' ) ) {
 } else {
        # Keep the old pre PHPUnit 3.5.0 behaviour for compatibility
        require_once( 'PHPUnit/TextUI/Command.php' );
-}      
+}
 PHPUnit_TextUI_Command::main();