Merge "Selenium: replace UserLoginPage with BlankPage where possible"
[lhc/web/wiklou.git] / tests / phpunit / includes / page / WikiPageMcrWriteBothDbTest.php
1 <?php
2
3 use MediaWiki\Tests\Revision\McrWriteBothSchemaOverride;
4
5 /**
6 * Tests WikiPage against the intermediate MCR DB schema for use during schema migration.
7 *
8 * @covers WikiPage
9 *
10 * @group WikiPage
11 * @group Storage
12 * @group ContentHandler
13 * @group Database
14 * @group medium
15 */
16 class WikiPageMcrWriteBothDbTest extends WikiPageDbTestBase {
17
18 use McrWriteBothSchemaOverride;
19
20 protected function getContentHandlerUseDB() {
21 return true;
22 }
23
24 }