Page Menu
Home
WickedGov Phorge
Search
Configure Global Search
Log In
Files
F4110788
LanguageSlTest.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
LanguageSlTest.php
View Options
<?php
/**
* @author Santhosh Thottingal
* @copyright Copyright © 2012, Amir E. Aharoni
* @file
*/
/**
* @group Language
* @covers \LanguageSl
*/
class
LanguageSlTest
extends
LanguageClassesTestCase
{
/**
* @dataProvider providerPlural
* @covers \MediaWiki\Language\Language::convertPlural
*/
public
function
testPlural
(
$result
,
$value
)
{
$forms
=
[
'one'
,
'two'
,
'few'
,
'other'
];
$this
->
assertEquals
(
$result
,
$this
->
getLang
()->
convertPlural
(
$value
,
$forms
)
);
}
/**
* @dataProvider providerPlural
* @covers \MediaWiki\Language\Language::getPluralRuleType
*/
public
function
testGetPluralRuleType
(
$result
,
$value
)
{
$this
->
assertEquals
(
$result
,
$this
->
getLang
()->
getPluralRuleType
(
$value
)
);
}
public
static
function
providerPlural
()
{
return
[
[
'other'
,
0
],
[
'one'
,
1
],
[
'two'
,
2
],
[
'few'
,
3
],
[
'few'
,
4
],
[
'other'
,
5
],
[
'other'
,
99
],
[
'other'
,
100
],
[
'one'
,
101
],
[
'two'
,
102
],
[
'few'
,
103
],
[
'one'
,
201
],
];
}
}
File Metadata
Details
Attached
Mime Type
text/x-php
Expires
Tue, Aug 18, 22:00 (1 d, 8 h)
Storage Engine
local-disk
Storage Format
Raw Data
Storage Handle
6b/5f/7ecce5731093055c0a96a685a3ec
Default Alt Text
LanguageSlTest.php (1 KB)
Attached To
Mode
rMWPROD MediaWiki Production
Attached
Detach File
Event Timeline
Log In to Comment