wiki.techinc.nl/tests/phpunit/includes/exception/BadTitleErrorTest.php
Daimona Eaytoy 2e02e7fdb1 Fix most PHPUnit 8 compat issues in DBless tests
This patch fixes all PHPUnit 8 compat issues in the DBless suite, aside
from assertArraySubset.

Bug: T192167
Change-Id: Iea782386509b9e579f06d63687669e14bc437fad
2019-12-15 00:24:21 +00:00

30 lines
661 B
PHP

<?php
/**
* @covers BadTitleError
* @author Addshore
*/
class BadTitleErrorTest extends MediaWikiTestCase {
public function testExceptionSetsStatusCode() {
$this->setMwGlobals( 'wgOut', $this->getMockWgOut() );
try {
throw new BadTitleError();
} catch ( BadTitleError $e ) {
ob_start();
$e->report();
$text = ob_get_clean();
$this->assertStringContainsString( $e->getText(), $text );
}
}
private function getMockWgOut() {
$mock = $this->getMockBuilder( OutputPage::class )
->disableOriginalConstructor()
->getMock();
$mock->expects( $this->once() )
->method( 'setStatusCode' )
->with( 400 );
return $mock;
}
}