Merge "Make LocalFile file locking calls use Status::wrap"
[lhc/web/wiklou.git] / tests / phpunit / includes / RevisionMcrWriteBothDbTest.php
1 <?php
2 use MediaWiki\Tests\Storage\McrWriteBothSchemaOverride;
3
4 /**
5 * Tests Revision against the intermediate MCR DB schema for use during schema migration.
6 *
7 * @covers Revision
8 *
9 * @group Revision
10 * @group Storage
11 * @group ContentHandler
12 * @group Database
13 * @group medium
14 */
15 class RevisionMcrWriteBothDbTest extends RevisionDbTestBase {
16
17 use McrWriteBothSchemaOverride;
18
19 protected function getContentHandlerUseDB() {
20 return true;
21 }
22
23 }