MediaWiki REL1_30
LanguageGanTest.php
Go to the documentation of this file.
1<?php
2
8 public function testAutoConvertToAllVariants( $result, $value ) {
9 $this->assertEquals( $result, $this->getLang()->autoConvertToAllVariants( $value ) );
10 }
11
12 public static function provideAutoConvertToAllVariants() {
13 return [
14 // zh2Hans
15 [
16 [
17 'gan' => '㑯',
18 'gan-hans' => '㑔',
19 'gan-hant' => '㑯',
20 ],
21 '㑯'
22 ],
23 // zh2Hant
24 [
25 [
26 'gan' => '㐷',
27 'gan-hans' => '㐷',
28 'gan-hant' => '傌',
29 ],
30 '㐷'
31 ],
32 ];
33 }
34}
Helping class to run tests using a clean language instance.
testAutoConvertToAllVariants( $result, $value)
provideAutoConvertToAllVariants Language::autoConvertToAllVariants
static provideAutoConvertToAllVariants()