Merge "Fix 'Tags' padding to keep it farther from the edge and document the source...
[lhc/web/wiklou.git] / tests / phpunit / includes / page / WikiPageMcrWriteBothDbTest.php
1 <?php
2 use MediaWiki\Tests\Storage\McrWriteBothSchemaOverride;
3
4 /**
5 * Tests WikiPage against the intermediate MCR DB schema for use during schema migration.
6 *
7 * @covers WikiPage
8 *
9 * @group WikiPage
10 * @group Storage
11 * @group ContentHandler
12 * @group Database
13 * @group medium
14 */
15 class WikiPageMcrWriteBothDbTest extends WikiPageDbTestBase {
16
17 use McrWriteBothSchemaOverride;
18
19 protected function getContentHandlerUseDB() {
20 return true;
21 }
22
23 }