wiki.techinc.nl/tests/phpunit/includes/exception/BadTitleErrorTest.php

Ignoring revisions in .git-blame-ignore-revs. Click here to bypass and see the normal blame view.

29 lines
597 B
PHP
Raw Normal View History

<?php
use MediaWiki\Output\OutputPage;
/**
* @covers \BadTitleError
* @author Addshore
*/
class BadTitleErrorTest extends MediaWikiIntegrationTestCase {
public function testExceptionSetsStatusCode() {
$mockOut = $this->createMock( OutputPage::class );
$mockOut->expects( $this->once() )
->method( 'setStatusCode' )
->with( 404 );
$this->setMwGlobals( 'wgOut', $mockOut );
try {
throw new BadTitleError();
} catch ( BadTitleError $e ) {
ob_start();
$e->report();
$text = ob_get_clean();
$this->assertStringContainsString( $e->getMessage(), $text );
}
}
}