2016-09-08 06:18:47 +00:00
|
|
|
<?php
|
|
|
|
|
|
2019-06-13 23:00:08 +00:00
|
|
|
class JsonContentHandlerTest extends MediaWikiTestCase {
|
2016-09-08 06:18:47 +00:00
|
|
|
|
|
|
|
|
/**
|
|
|
|
|
* @covers JsonContentHandler::makeEmptyContent
|
|
|
|
|
*/
|
|
|
|
|
public function testMakeEmptyContent() {
|
|
|
|
|
$handler = new JsonContentHandler();
|
|
|
|
|
$content = $handler->makeEmptyContent();
|
|
|
|
|
$this->assertInstanceOf( JsonContent::class, $content );
|
|
|
|
|
$this->assertTrue( $content->isValid() );
|
|
|
|
|
}
|
|
|
|
|
}
|