JsonContentHandlerTest.php 356 B

123456789101112131415
  1. <?php
  2. class JsonContentHandlerTest extends MediaWikiTestCase {
  3. /**
  4. * @covers JsonContentHandler::makeEmptyContent
  5. */
  6. public function testMakeEmptyContent() {
  7. $handler = new JsonContentHandler();
  8. $content = $handler->makeEmptyContent();
  9. $this->assertInstanceOf( JsonContent::class, $content );
  10. $this->assertTrue( $content->isValid() );
  11. }
  12. }