Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1430295
LanguageSkTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
957 B
Referenced Files
None
Subscribers
None
LanguageSkTest.php
View Options
<?php
/**
* @author Santhosh Thottingal
* @copyright Copyright © 2012, Amir E. Aharoni
* @file
*/
/**
* @group Language
*/
class
LanguageSkTest
extends
LanguageClassesTestCase
{
/**
* @dataProvider providePlural
* @covers \MediaWiki\Language\Language::convertPlural
*/
public
function
testPlural
(
$result
,
$value
)
{
$forms
=
[
'one'
,
'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
],
[
'few'
,
2
],
[
'few'
,
3
],
[
'few'
,
4
],
[
'other'
,
5
],
[
'other'
,
11
],
[
'other'
,
20
],
[
'other'
,
25
],
[
'other'
,
200
],
];
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 18:36 (5 h, 52 m)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
70/ef/0364a8b059af80c10709ae855d74
Default Alt Text
LanguageSkTest.php (957 B)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment