PHPUnit wants the filenames of the tests to match the class name being tested. Bug: T337333 Change-Id: Icc450c900b6d4589515d86889403043a5e4ef690
19 lines
488 B
PHP
19 lines
488 B
PHP
<?php
|
|
|
|
/**
|
|
* @group GlobalFunctions
|
|
* @covers ::wfRemoveDotSegments
|
|
*/
|
|
class WfRemoveDotSegmentsTest extends MediaWikiUnitTestCase {
|
|
/**
|
|
* Same tests as the UrlUtils method to ensure they don't fall out of sync
|
|
* @dataProvider UrlUtilsProviders::provideRemoveDotSegments
|
|
*/
|
|
public function testWfRemoveDotSegments( $inputPath, $outputPath ) {
|
|
$this->assertEquals(
|
|
$outputPath,
|
|
wfRemoveDotSegments( $inputPath ),
|
|
"Testing $inputPath expands to $outputPath"
|
|
);
|
|
}
|
|
}
|