Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F1426970
LanguageDsbTest.php
No One
Temporary
Actions
Download File
Edit File
Delete File
View Transforms
Subscribe
Flag For Later
Award Token
Size
993 B
Referenced Files
None
Subscribers
None
LanguageDsbTest.php
View Options
<?php
/**
* @author Santhosh Thottingal
* @copyright Copyright © 2012, Santhosh Thottingal
* @file
*/
/**
* @group Language
* @covers \LanguageDsb
*/
class
LanguageDsbTest
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
],
[
'one'
,
101
],
[
'one'
,
90001
],
[
'two'
,
2
],
[
'few'
,
3
],
[
'few'
,
203
],
[
'few'
,
4
],
[
'other'
,
99
],
[
'other'
,
555
],
];
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Sat, May 16, 14:00 (1 d, 19 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
2e/01/52a75bcd3fb2d31aec01ca23b40e
Default Alt Text
LanguageDsbTest.php (993 B)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment