WikiPageMcrWriteBothDbTest.php 450 B

123456789101112131415161718192021222324
  1. <?php
  2. use MediaWiki\Tests\Storage\McrWriteBothSchemaOverride;
  3. /**
  4. * Tests WikiPage against the intermediate MCR DB schema for use during schema migration.
  5. *
  6. * @covers WikiPage
  7. *
  8. * @group WikiPage
  9. * @group Storage
  10. * @group ContentHandler
  11. * @group Database
  12. * @group medium
  13. */
  14. class WikiPageMcrWriteBothDbTest extends WikiPageDbTestBase {
  15. use McrWriteBothSchemaOverride;
  16. protected function getContentHandlerUseDB() {
  17. return true;
  18. }
  19. }