diff options
Diffstat (limited to 'tests/phpunit/includes/exception')
7 files changed, 9 insertions, 9 deletions
diff --git a/tests/phpunit/includes/exception/BadTitleErrorTest.php b/tests/phpunit/includes/exception/BadTitleErrorTest.php index a38a8f9a245b..f7efc356dccb 100644 --- a/tests/phpunit/includes/exception/BadTitleErrorTest.php +++ b/tests/phpunit/includes/exception/BadTitleErrorTest.php @@ -3,7 +3,7 @@ use MediaWiki\Output\OutputPage; /** - * @covers BadTitleError + * @covers \BadTitleError * @author Addshore */ class BadTitleErrorTest extends MediaWikiIntegrationTestCase { diff --git a/tests/phpunit/includes/exception/MWExceptionTest.php b/tests/phpunit/includes/exception/MWExceptionTest.php index c848bbe1f2ea..75e382c99cca 100644 --- a/tests/phpunit/includes/exception/MWExceptionTest.php +++ b/tests/phpunit/includes/exception/MWExceptionTest.php @@ -3,7 +3,7 @@ use Wikimedia\TestingAccessWrapper; /** - * @covers MWException + * @covers \MWException * @author Antoine Musso */ class MWExceptionTest extends MediaWikiIntegrationTestCase { @@ -75,7 +75,7 @@ class MWExceptionTest extends MediaWikiIntegrationTestCase { } /** - * @covers MWException::report + * @covers \MWException::report */ public function testReport() { // Turn off to keep mw-error.log file empty in CI (and thus avoid build failure) @@ -97,7 +97,7 @@ class MWExceptionTest extends MediaWikiIntegrationTestCase { } /** - * @covers MWException::report + * @covers \MWException::report */ public function testReportDeprecated() { // Turn off to keep mw-error.log file empty in CI (and thus avoid build failure) diff --git a/tests/phpunit/includes/exception/PermissionsErrorTest.php b/tests/phpunit/includes/exception/PermissionsErrorTest.php index b5b40da2bdfb..b10cdfce320b 100644 --- a/tests/phpunit/includes/exception/PermissionsErrorTest.php +++ b/tests/phpunit/includes/exception/PermissionsErrorTest.php @@ -3,7 +3,7 @@ use MediaWiki\Permissions\PermissionStatus; /** - * @covers PermissionsError + * @covers \PermissionsError */ class PermissionsErrorTest extends MediaWikiIntegrationTestCase { diff --git a/tests/phpunit/includes/exception/ReadOnlyErrorTest.php b/tests/phpunit/includes/exception/ReadOnlyErrorTest.php index e0a4999c35f5..734d45e4534d 100644 --- a/tests/phpunit/includes/exception/ReadOnlyErrorTest.php +++ b/tests/phpunit/includes/exception/ReadOnlyErrorTest.php @@ -3,7 +3,7 @@ use MediaWiki\Tests\Unit\DummyServicesTrait; /** - * @covers ReadOnlyError + * @covers \ReadOnlyError * @author Addshore */ class ReadOnlyErrorTest extends MediaWikiIntegrationTestCase { diff --git a/tests/phpunit/includes/exception/ThrottledErrorTest.php b/tests/phpunit/includes/exception/ThrottledErrorTest.php index 6f853f11c013..7c770dbf6b31 100644 --- a/tests/phpunit/includes/exception/ThrottledErrorTest.php +++ b/tests/phpunit/includes/exception/ThrottledErrorTest.php @@ -3,7 +3,7 @@ use MediaWiki\Output\OutputPage; /** - * @covers ThrottledError + * @covers \ThrottledError * @author Addshore */ class ThrottledErrorTest extends MediaWikiIntegrationTestCase { diff --git a/tests/phpunit/includes/exception/UserBlockedErrorTest.php b/tests/phpunit/includes/exception/UserBlockedErrorTest.php index 59bc1a05e629..b7459920ee28 100644 --- a/tests/phpunit/includes/exception/UserBlockedErrorTest.php +++ b/tests/phpunit/includes/exception/UserBlockedErrorTest.php @@ -8,7 +8,7 @@ use MediaWiki\Language\RawMessage; use MediaWiki\User\UserIdentity; /** - * @covers UserBlockedError + * @covers \UserBlockedError */ class UserBlockedErrorTest extends MediaWikiIntegrationTestCase { diff --git a/tests/phpunit/includes/exception/UserNotLoggedInTest.php b/tests/phpunit/includes/exception/UserNotLoggedInTest.php index 2f0f34f61bdb..3e71b6997d16 100644 --- a/tests/phpunit/includes/exception/UserNotLoggedInTest.php +++ b/tests/phpunit/includes/exception/UserNotLoggedInTest.php @@ -1,7 +1,7 @@ <?php /** - * @covers UserNotLoggedIn + * @covers \UserNotLoggedIn * @author Addshore */ class UserNotLoggedInTest extends MediaWikiIntegrationTestCase { |