aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit/includes/collation/CollationTest.php
diff options
context:
space:
mode:
Diffstat (limited to 'tests/phpunit/includes/collation/CollationTest.php')
-rw-r--r--tests/phpunit/includes/collation/CollationTest.php32
1 files changed, 16 insertions, 16 deletions
diff --git a/tests/phpunit/includes/collation/CollationTest.php b/tests/phpunit/includes/collation/CollationTest.php
index 5eecb15c70e8..34ee4b63debd 100644
--- a/tests/phpunit/includes/collation/CollationTest.php
+++ b/tests/phpunit/includes/collation/CollationTest.php
@@ -2,10 +2,10 @@
/**
* Class CollationTest
- * @covers Collation
- * @covers IcuCollation
- * @covers IdentityCollation
- * @covers UppercaseCollation
+ * @covers \Collation
+ * @covers \IcuCollation
+ * @covers \IdentityCollation
+ * @covers \UppercaseCollation
*/
class CollationTest extends MediaWikiLangTestCase {
@@ -20,10 +20,10 @@ class CollationTest extends MediaWikiLangTestCase {
* @param string $base
* @param string $extended String containing base as a prefix.
*
- * @covers Collation::getSortKey()
- * @covers IcuCollation::getSortKey()
- * @covers IdentityCollation::getSortKey()
- * @covers UppercaseCollation::getSortKey()
+ * @covers \Collation::getSortKey()
+ * @covers \IcuCollation::getSortKey()
+ * @covers \IdentityCollation::getSortKey()
+ * @covers \UppercaseCollation::getSortKey()
* @dataProvider prefixDataProvider
*/
public function testIsPrefix( $lang, $base, $extended ) {
@@ -55,10 +55,10 @@ class CollationTest extends MediaWikiLangTestCase {
/**
* Opposite of testIsPrefix
*
- * @covers Collation::getSortKey()
- * @covers IcuCollation::getSortKey()
- * @covers IdentityCollation::getSortKey()
- * @covers UppercaseCollation::getSortKey()
+ * @covers \Collation::getSortKey()
+ * @covers \IcuCollation::getSortKey()
+ * @covers \IdentityCollation::getSortKey()
+ * @covers \UppercaseCollation::getSortKey()
* @dataProvider notPrefixDataProvider
*/
public function testNotIsPrefix( $lang, $base, $extended ) {
@@ -85,10 +85,10 @@ class CollationTest extends MediaWikiLangTestCase {
* @param string $string String to get first letter of
* @param string $firstLetter Expected first letter.
*
- * @covers Collation::getFirstLetter()
- * @covers IcuCollation::getFirstLetter()
- * @covers IdentityCollation::getFirstLetter()
- * @covers UppercaseCollation::getFirstLetter()
+ * @covers \Collation::getFirstLetter()
+ * @covers \IcuCollation::getFirstLetter()
+ * @covers \IdentityCollation::getFirstLetter()
+ * @covers \UppercaseCollation::getFirstLetter()
* @dataProvider firstLetterProvider
*/
public function testGetFirstLetter( $collation, $string, $firstLetter ) {