21 lines
450 B
PHP
21 lines
450 B
PHP
<?php
|
|
|
|
namespace MediaWiki\Edit;
|
|
|
|
use ParserOutput;
|
|
|
|
/**
|
|
* @covers \MediaWiki\Edit\PreparedEdit
|
|
*/
|
|
class PreparedEditTest extends \MediaWikiUnitTestCase {
|
|
public function testCallback() {
|
|
$output = new ParserOutput();
|
|
$edit = new PreparedEdit();
|
|
$edit->parserOutputCallback = static function () {
|
|
return new ParserOutput();
|
|
};
|
|
|
|
$this->assertEquals( $output, $edit->getOutput() );
|
|
$this->assertEquals( $output, $edit->output );
|
|
}
|
|
}
|