diff options
Diffstat (limited to 'tests/phpunit/maintenance/backup_PageTest.php')
-rw-r--r-- | tests/phpunit/maintenance/backup_PageTest.php | 14 |
1 files changed, 7 insertions, 7 deletions
diff --git a/tests/phpunit/maintenance/backup_PageTest.php b/tests/phpunit/maintenance/backup_PageTest.php index 54a362e7052e..3c00f147ec5d 100644 --- a/tests/phpunit/maintenance/backup_PageTest.php +++ b/tests/phpunit/maintenance/backup_PageTest.php @@ -44,7 +44,7 @@ class BackupDumperPageTest extends DumpTestCase { */ private $streamingLoadBalancer = null; - function addDBData() { + public function addDBData() { // be sure, titles created here using english namespace names $this->setContentLang( 'en' ); @@ -171,7 +171,7 @@ class BackupDumperPageTest extends DumpTestCase { "Page ids increasing without holes" ); } - function tearDown() { + public function tearDown() { parent::tearDown(); if ( isset( $this->streamingLoadBalancer ) ) { @@ -238,7 +238,7 @@ class BackupDumperPageTest extends DumpTestCase { /** * @dataProvider schemaVersionProvider */ - function testFullTextPlain( $schemaVersion ) { + public function testFullTextPlain( $schemaVersion ) { // Preparing the dump $fname = $this->getNewTempFile(); @@ -370,7 +370,7 @@ class BackupDumperPageTest extends DumpTestCase { /** * @dataProvider schemaVersionProvider */ - function testFullStubPlain( $schemaVersion ) { + public function testFullStubPlain( $schemaVersion ) { // Preparing the dump $fname = $this->getNewTempFile(); @@ -495,7 +495,7 @@ class BackupDumperPageTest extends DumpTestCase { /** * @dataProvider schemaVersionProvider */ - function testCurrentStubPlain( $schemaVersion ) { + public function testCurrentStubPlain( $schemaVersion ) { // Preparing the dump $fname = $this->getNewTempFile(); @@ -567,7 +567,7 @@ class BackupDumperPageTest extends DumpTestCase { $asserter->assertDumpEnd(); } - function testCurrentStubGzip() { + public function testCurrentStubGzip() { $this->checkHasGzip(); // Preparing the dump @@ -649,7 +649,7 @@ class BackupDumperPageTest extends DumpTestCase { * * @dataProvider schemaVersionProvider */ - function testXmlDumpsBackupUseCase( $schemaVersion ) { + public function testXmlDumpsBackupUseCase( $schemaVersion ) { $this->checkHasGzip(); $fnameMetaHistory = $this->getNewTempFile(); |