Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1431291
LanguageCuTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1006 B
Referenced Files
None
Subscribers
None
LanguageCuTest.php
View Options
<?php
/**
* @author Santhosh Thottingal
* @copyright Copyright © 2012, Santhosh Thottingal
* @file
*/
/**
* @group Language
* @covers \LanguageCu
*/
class
LanguageCuTest
extends
LanguageClassesTestCase
{
/**
* @dataProvider providePlural
* @covers \MediaWiki\Language\Language::convertPlural
*/
public
function
testPlural
(
$result
,
$value
)
{
$forms
=
[
'one'
,
'two'
,
'few'
,
'other'
];
$this
->
assertEquals
(
$result
,
$this
->
getLang
()->
convertPlural
(
$value
,
$forms
)
);
}
/**
* @dataProvider providePlural
* @covers \MediaWiki\Language\Language::getPluralRuleType
*/
public
function
testGetPluralRuleType
(
$result
,
$value
)
{
$this
->
assertEquals
(
$result
,
$this
->
getLang
()->
getPluralRuleType
(
$value
)
);
}
public
static
function
providePlural
()
{
return
[
[
'other'
,
0
],
[
'one'
,
1
],
[
'two'
,
2
],
[
'few'
,
3
],
[
'few'
,
4
],
[
'other'
,
5
],
[
'one'
,
11
],
[
'other'
,
20
],
[
'two'
,
22
],
[
'few'
,
223
],
[
'other'
,
200
],
];
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 20:17 (1 d, 1 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
9e/a7/3184029cfb800c33947c3c9f4205
Default Alt Text
LanguageCuTest.php (1006 B)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment