Add missing namespace to @covers comments
authorTimo Tijhof <krinklemail@gmail.com>
Tue, 23 Feb 2016 03:18:31 +0000 (03:18 +0000)
committerTimo Tijhof <krinklemail@gmail.com>
Tue, 23 Feb 2016 03:56:49 +0000 (03:56 +0000)
commit4193700b1992daaa76a6d09bbce6ca136f6a06f4
tree84f8875b94980327b0137f4a0e91490a15820f14
parente7939ffcd476cc8b6f0ffd8c8084c7baefdfdc9c
Add missing namespace to @covers comments

PHP_CodeCoverage_Exception:
> Trying to @cover not existing method "SwiftFileBackend::sanitzeHdrs".
> Trying to @cover not existing method "LineFormatter::normalizeException".
> Trying to @cover not existing method "MonologSpi::mergeConfig".
> Trying to @cover not existing method "ProcessCacheLRU::het".
> Trying to @cover not existing method "BitmapHandler::swapICCProfile".
> Trying to @cover not existing class or interface "checkParseSafety".
> Trying to @cover not existing method "Article::__call". (was removed).
> Trying to @cover not existing method "ExtensionProcessor::extracttExtensionMessagesFiles".
> Trying to @cover not existing method "FileContentsHasher::getFileContentHash".

Makes code coverage run fail at the moment. These used to be warnings
in PHPUnit 3.x, but are now hard exceptions in PHPUnit 4.x when requesting
a coverage report.

Change-Id: If7f45ca57fd7d480d35b1414a889398837c0c472
tests/phpunit/includes/debug/logger/MonologSpiTest.php
tests/phpunit/includes/debug/logger/monolog/LineFormatterTest.php
tests/phpunit/includes/filebackend/SwiftFileBackendTest.php
tests/phpunit/includes/libs/ProcessCacheLRUTest.php
tests/phpunit/includes/media/ExifBitmapTest.php
tests/phpunit/includes/media/XMPTest.php
tests/phpunit/includes/page/ArticleTest.php
tests/phpunit/includes/registration/ExtensionProcessorTest.php
tests/phpunit/includes/utils/FileContentsHasherTest.php