Merge "Add styling for the styleguide"
[lhc/web/wiklou.git] / tests / phpunit / includes / GlobalFunctions / wfBaseNameTest.php
index 3c4fa20..705730a 100644 (file)
@@ -1,12 +1,13 @@
 <?php
 /**
- * Tests for wfBaseName()
+ * @group GlobalFunctions
+ * @covers ::wfBaseName
  */
 class WfBaseNameTest extends MediaWikiTestCase {
        /**
         * @dataProvider providePaths
         */
-       function testBaseName( $fullpath, $basename ) {
+       public function testBaseName( $fullpath, $basename ) {
                $this->assertEquals( $basename, wfBaseName( $fullpath ),
                        "wfBaseName('$fullpath') => '$basename'" );
        }
@@ -27,8 +28,11 @@ class WfBaseNameTest extends MediaWikiTestCase {
                        array( '/aaaa/', 'aaaa' ),
                        array( '\\aaaa\\', 'aaaa' ),
                        array( '\\aaaa\\', 'aaaa' ),
-                       array( '/mnt/upload3/wikipedia/en/thumb/8/8b/Zork_Grand_Inquisitor_box_cover.jpg/93px-Zork_Grand_Inquisitor_box_cover.jpg',
-                               '93px-Zork_Grand_Inquisitor_box_cover.jpg' ),
+                       array(
+                               '/mnt/upload3/wikipedia/en/thumb/8/8b/'
+                                       . 'Zork_Grand_Inquisitor_box_cover.jpg/93px-Zork_Grand_Inquisitor_box_cover.jpg',
+                               '93px-Zork_Grand_Inquisitor_box_cover.jpg'
+                       ),
                        array( 'C:\\Progra~1\\Wikime~1\\Wikipe~1\\VIEWER.EXE', 'VIEWER.EXE' ),
                        array( 'Östergötland_coat_of_arms.png', 'Östergötland_coat_of_arms.png' ),
                );