diff options
author | Arthur <arthur@hoa.ro> | 2016-08-07 12:03:48 +0200 |
---|---|---|
committer | GitHub <noreply@github.com> | 2016-08-07 12:03:48 +0200 |
commit | cb30622d8b3d7c350e2b2a5506727e2309736505 (patch) | |
tree | 04bdab4db1ef5e8c68ea161e198bf2aef7ae9396 /tests | |
parent | 65b2c795d00f638d6ca08519e1435efd989c8117 (diff) | |
parent | edf3ff5a53b353ed4a5d9d617bfd06a6c13b3bac (diff) | |
download | Shaarli-cb30622d8b3d7c350e2b2a5506727e2309736505.tar.gz Shaarli-cb30622d8b3d7c350e2b2a5506727e2309736505.tar.zst Shaarli-cb30622d8b3d7c350e2b2a5506727e2309736505.zip |
Merge pull request #627 from ArthurHoaro/feature/translate-init
Initialize a translation function
Diffstat (limited to 'tests')
-rw-r--r-- | tests/LanguagesTest.php | 41 |
1 files changed, 41 insertions, 0 deletions
diff --git a/tests/LanguagesTest.php b/tests/LanguagesTest.php new file mode 100644 index 00000000..79c136c8 --- /dev/null +++ b/tests/LanguagesTest.php | |||
@@ -0,0 +1,41 @@ | |||
1 | <?php | ||
2 | |||
3 | require_once 'application/Languages.php'; | ||
4 | |||
5 | /** | ||
6 | * Class LanguagesTest. | ||
7 | */ | ||
8 | class LanguagesTest extends PHPUnit_Framework_TestCase | ||
9 | { | ||
10 | /** | ||
11 | * Test t() with a simple non identified value. | ||
12 | */ | ||
13 | public function testTranslateSingleNotID() | ||
14 | { | ||
15 | $text = 'abcdé 564 fgK'; | ||
16 | $this->assertEquals($text, t($text)); | ||
17 | } | ||
18 | |||
19 | /** | ||
20 | * Test t() with a non identified plural form. | ||
21 | */ | ||
22 | public function testTranslatePluralNotID() | ||
23 | { | ||
24 | $text = '%s sandwich'; | ||
25 | $nText = '%s sandwiches'; | ||
26 | $this->assertEquals('0 sandwich', t($text, $nText)); | ||
27 | $this->assertEquals('1 sandwich', t($text, $nText, 1)); | ||
28 | $this->assertEquals('2 sandwiches', t($text, $nText, 2)); | ||
29 | } | ||
30 | |||
31 | /** | ||
32 | * Test t() with a non identified invalid plural form. | ||
33 | */ | ||
34 | public function testTranslatePluralNotIDInvalid() | ||
35 | { | ||
36 | $text = 'sandwich'; | ||
37 | $nText = 'sandwiches'; | ||
38 | $this->assertEquals('sandwich', t($text, $nText, 1)); | ||
39 | $this->assertEquals('sandwiches', t($text, $nText, 2)); | ||
40 | } | ||
41 | } | ||