PHPUnit wants the filenames of the tests to match the class name being tested. Bug: T337333 Change-Id: Icc450c900b6d4589515d86889403043a5e4ef690
19 lines
476 B
PHP
19 lines
476 B
PHP
<?php
|
|
/**
|
|
* @group GlobalFunctions
|
|
* @covers ::wfAssembleUrl
|
|
*/
|
|
class WfAssembleUrlTest extends MediaWikiUnitTestCase {
|
|
/**
|
|
* Same tests as the UrlUtils method to ensure they don't fall out of sync
|
|
* @dataProvider UrlUtilsProviders::provideAssemble
|
|
*/
|
|
public function testWfAssembleUrl( $parts, $output ) {
|
|
$partsDump = print_r( $parts, true );
|
|
$this->assertEquals(
|
|
$output,
|
|
wfAssembleUrl( $parts ),
|
|
"Testing $partsDump assembles to $output"
|
|
);
|
|
}
|
|
}
|