Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4110123
LanguageCyTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
1 KB
Referenced Files
None
Subscribers
None
LanguageCyTest.php
View Options
<?php
/**
* @author Santhosh Thottingal
* @copyright Copyright © 2012, Santhosh Thottingal
* @file
*/
/**
* @group Language
*/
class
LanguageCyTest
extends
LanguageClassesTestCase
{
/**
* @dataProvider providePlural
* @covers \MediaWiki\Language\Language::convertPlural
*/
public
function
testPlural
(
$result
,
$value
)
{
$forms
=
[
'zero'
,
'one'
,
'two'
,
'few'
,
'many'
,
'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
[
[
'zero'
,
0
],
[
'one'
,
1
],
[
'two'
,
2
],
[
'few'
,
3
],
[
'many'
,
6
],
[
'other'
,
4
],
[
'other'
,
5
],
[
'other'
,
11
],
[
'other'
,
20
],
[
'other'
,
22
],
[
'other'
,
223
],
[
'other'
,
200.00
],
];
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Aug 18, 21:32 (2 d, 20 h ago)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
8d/d5/fa6a08dedfe5eb8b69bdcbb5a42c
Default Alt Text
LanguageCyTest.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment