diff options
Diffstat (limited to 'tests/phpunit/includes/cache/LinkBatchTest.php')
-rw-r--r-- | tests/phpunit/includes/cache/LinkBatchTest.php | 22 |
1 files changed, 11 insertions, 11 deletions
diff --git a/tests/phpunit/includes/cache/LinkBatchTest.php b/tests/phpunit/includes/cache/LinkBatchTest.php index f205770f6c26..65b3f5bf74ce 100644 --- a/tests/phpunit/includes/cache/LinkBatchTest.php +++ b/tests/phpunit/includes/cache/LinkBatchTest.php @@ -14,14 +14,14 @@ use Wikimedia\Rdbms\IConnectionProvider; /** * @group Database * @group Cache - * @covers LinkBatch + * @covers \LinkBatch */ class LinkBatchTest extends MediaWikiIntegrationTestCase { /** - * @covers LinkBatch::__construct() - * @covers LinkBatch::getSize() - * @covers LinkBatch::isEmpty() + * @covers \LinkBatch::__construct() + * @covers \LinkBatch::getSize() + * @covers \LinkBatch::isEmpty() */ public function testConstructEmptyWithServices() { $batch = new LinkBatch( @@ -40,9 +40,9 @@ class LinkBatchTest extends MediaWikiIntegrationTestCase { } /** - * @covers LinkBatch::__construct() - * @covers LinkBatch::getSize() - * @covers LinkBatch::isEmpty() + * @covers \LinkBatch::__construct() + * @covers \LinkBatch::getSize() + * @covers \LinkBatch::isEmpty() */ public function testConstructWithServices() { $batch = new LinkBatch( @@ -83,8 +83,8 @@ class LinkBatchTest extends MediaWikiIntegrationTestCase { } /** - * @covers LinkBatch::addObj() - * @covers LinkBatch::getSize() + * @covers \LinkBatch::addObj() + * @covers \LinkBatch::getSize() */ public function testAddObj() { $batch = $this->newLinkBatch( @@ -102,8 +102,8 @@ class LinkBatchTest extends MediaWikiIntegrationTestCase { } /** - * @covers LinkBatch::add() - * @covers LinkBatch::getSize() + * @covers \LinkBatch::add() + * @covers \LinkBatch::getSize() */ public function testAdd() { $batch = $this->newLinkBatch( |