aboutsummaryrefslogtreecommitdiffstats
path: root/tests/phpunit/includes/languages/LanguageRuTest.php
diff options
context:
space:
mode:
authorJames D. Forrester <jforrester@wikimedia.org>2024-09-27 16:18:58 -0400
committerJforrester <jforrester@wikimedia.org>2024-10-03 17:09:36 +0000
commit91a37f53b4c50ee9f159cbfb1d24bbba928c55e9 (patch)
treec24fb7722a3ea4972311b356e3af54a33341a222 /tests/phpunit/includes/languages/LanguageRuTest.php
parent92034936066aa231214293ee8b37ac434f7f60ce (diff)
downloadmediawikicore-91a37f53b4c50ee9f159cbfb1d24bbba928c55e9.tar.gz
mediawikicore-91a37f53b4c50ee9f159cbfb1d24bbba928c55e9.zip
Switch over a bunch of class_alias uses to actuals
Change-Id: Id175a83e71cc910eaee5d5890a9106872a3ca3b8
Diffstat (limited to 'tests/phpunit/includes/languages/LanguageRuTest.php')
-rw-r--r--tests/phpunit/includes/languages/LanguageRuTest.php10
1 files changed, 5 insertions, 5 deletions
diff --git a/tests/phpunit/includes/languages/LanguageRuTest.php b/tests/phpunit/includes/languages/LanguageRuTest.php
index 6b3fc6da15bb..30525852264d 100644
--- a/tests/phpunit/includes/languages/LanguageRuTest.php
+++ b/tests/phpunit/includes/languages/LanguageRuTest.php
@@ -11,7 +11,7 @@
class LanguageRuTest extends LanguageClassesTestCase {
/**
* @dataProvider providePlural
- * @covers \Language::convertPlural
+ * @covers \MediaWiki\Language\Language::convertPlural
*/
public function testPlural( $result, $value ) {
$forms = [ 'one', 'few', 'many', 'other' ];
@@ -20,7 +20,7 @@ class LanguageRuTest extends LanguageClassesTestCase {
/**
* Test explicit plural forms - n=FormN forms
- * @covers \Language::convertPlural
+ * @covers \MediaWiki\Language\Language::convertPlural
*/
public function testExplicitPlural() {
$forms = [ 'one', 'few', 'many', 'other', '12=dozen' ];
@@ -31,7 +31,7 @@ class LanguageRuTest extends LanguageClassesTestCase {
/**
* @dataProvider providePlural
- * @covers \Language::getPluralRuleType
+ * @covers \MediaWiki\Language\Language::getPluralRuleType
*/
public function testGetPluralRuleType( $result, $value ) {
$this->assertEquals( $result, $this->getLang()->getPluralRuleType( $value ) );
@@ -55,7 +55,7 @@ class LanguageRuTest extends LanguageClassesTestCase {
/**
* @dataProvider providePluralTwoForms
- * @covers \Language::convertPlural
+ * @covers \MediaWiki\Language\Language::convertPlural
*/
public function testPluralTwoForms( $result, $value ) {
$forms = [ '1=one', 'other' ];
@@ -73,7 +73,7 @@ class LanguageRuTest extends LanguageClassesTestCase {
/**
* @dataProvider providerGrammar
- * @covers \Language::convertGrammar
+ * @covers \MediaWiki\Language\Language::convertGrammar
*/
public function testGrammar( $result, $word, $case ) {
$this->assertEquals( $result, $this->getLang()->convertGrammar( $word, $case ) );